From 7506b6f87bf4cc0b5c13b1b7c681726ac9788386 Mon Sep 17 00:00:00 2001 From: frab1t <33671357+frab1t@users.noreply.github.com> Date: Mon, 6 May 2019 19:29:31 +0200 Subject: [PATCH] add InsertForm component --- src/components/InsertForm.js | 121 +++++++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 src/components/InsertForm.js 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