1
0
mirror of https://github.com/ascribe/onion.git synced 2025-01-10 21:18:38 +01:00
onion/js/lib/buttons.js

28 lines
507 B
JavaScript
Raw Normal View History

2015-09-03 14:26:25 +02:00
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>
)
}
});