mirror of
https://github.com/ascribe/onion.git
synced 2024-12-24 02:16:10 +01:00
28 lines
507 B
JavaScript
28 lines
507 B
JavaScript
import React from 'react';
|
|
import _Button from 'react-bootstrap/lib/Button';
|
|
|
|
export const Button = React.createClass({
|
|
|
|
render: function render() {
|
|
return (
|
|
<_Button>
|
|
{this.props.children}
|
|
</_Button>
|
|
)
|
|
}
|
|
|
|
});
|
|
|
|
|
|
export const SecondaryButton = React.createClass({
|
|
|
|
render: function render() {
|
|
return (
|
|
<_Button className='btn-secondary'>
|
|
{this.props.children}
|
|
</_Button>
|
|
)
|
|
}
|
|
|
|
});
|