diff --git a/src/components/InsertForm.js b/src/components/InsertForm.js new file mode 100644 index 0000000..ec64d4c --- /dev/null +++ b/src/components/InsertForm.js @@ -0,0 +1,121 @@ +import React, { Component } from 'react'; +import { + Row, + Col, + Form, + FormGroup, + Label, + Input, + Button +} from 'reactstrap'; + +class InsertForm extends Component { + constructor(props) { + super(props); + + this.state = {}; + } + + render() { + return ( +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ ); + } +} + +export default InsertForm; \ No newline at end of file