diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-27 14:47:48 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-27 14:47:48 +0530 |
commit | eedde57b9caff20e1e7d25b43fcb8785e23b3e11 (patch) | |
tree | 3532d795ecf269083e613860c0b27e3689773678 /src/components/Form/Document/DocumentInfoForm.js | |
parent | 240d7d56459c656c86330755c7a0b9000a090f77 (diff) |
Fixed DisplayItem and now really big decimal numbers don't show up
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; |