diff --git a/src/components/ButtonBox.js b/src/components/ButtonBox.js new file mode 100644 index 0000000..7be77c6 --- /dev/null +++ b/src/components/ButtonBox.js @@ -0,0 +1,62 @@ +import React, { Component } from 'react'; +import { Button, Row, Col } from 'reactstrap'; +import './ButtonBox.css'; + +class ButtonBox extends Component { + + constructor(props) { + super(props); + } + + render() { + return ( +
+ + + + + + + + + + + + + + +
+ ); + } + } + + export default ButtonBox; \ No newline at end of file