From a842301e7fd759daa2ed7486e7ba8524524b91fc Mon Sep 17 00:00:00 2001 From: frab1t <33671357+frab1t@users.noreply.github.com> Date: Wed, 8 May 2019 16:21:48 +0200 Subject: [PATCH] remove InsertForm component --- src/components/InsertForm.js | 121 ----------------------------------- 1 file changed, 121 deletions(-) delete mode 100644 src/components/InsertForm.js diff --git a/src/components/InsertForm.js b/src/components/InsertForm.js deleted file mode 100644 index ec64d4c..0000000 --- a/src/components/InsertForm.js +++ /dev/null @@ -1,121 +0,0 @@ -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