diff --git a/src/components/Button.js b/src/components/Button.js new file mode 100644 index 0000000..a01f139 --- /dev/null +++ b/src/components/Button.js @@ -0,0 +1,33 @@ +import React, { Component } from 'react'; +import { + Button as ButtonBootstrap +} from 'reactstrap'; + +const style = { + borderRadius: 20 +}; + +class Button extends Component { + constructor(props) { + super(props); + + this.state = {}; + } + + render() { + return ( + + {this.props.children} + + + ); + } +} + +export default Button; \ No newline at end of file