diff options
Diffstat (limited to 'src/components/Form/Document/DocumentInfoForm.js')
-rw-r--r-- | src/components/Form/Document/DocumentInfoForm.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/components/Form/Document/DocumentInfoForm.js b/src/components/Form/Document/DocumentInfoForm.js deleted file mode 100644 index 09bb9c6..0000000 --- a/src/components/Form/Document/DocumentInfoForm.js +++ /dev/null @@ -1,25 +0,0 @@ -/* - * OpenBills - Self hosted browser app to generate and keep track of simple invoices - * Version - 0 - * Licensed under the MIT license - https://opensource.org/licenses/MIT - * - * Copyright (c) 2021 Vidhu Kant Sharma -*/ - -import React/*, { useState }*/ from "react"; -import "./../Form.scss"; - -import SelectClientForm from "./../People/SelectClientForm"; - - -const DocumentInfoForm = (props) => { - return ( - <div className={"DocumentInfoForm"}> - <SelectClientForm - savedPeople={props.savedPeople} - /> - </div> - ); -} - -export default DocumentInfoForm; |