aboutsummaryrefslogtreecommitdiff
path: root/src/components/Form/Document/DocumentInfoForm.tsx
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-06-27 14:47:48 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-06-27 14:47:48 +0530
commiteedde57b9caff20e1e7d25b43fcb8785e23b3e11 (patch)
tree3532d795ecf269083e613860c0b27e3689773678 /src/components/Form/Document/DocumentInfoForm.tsx
parent240d7d56459c656c86330755c7a0b9000a090f77 (diff)
Fixed DisplayItem and now really big decimal numbers don't show up
Diffstat (limited to 'src/components/Form/Document/DocumentInfoForm.tsx')
-rw-r--r--src/components/Form/Document/DocumentInfoForm.tsx29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/components/Form/Document/DocumentInfoForm.tsx b/src/components/Form/Document/DocumentInfoForm.tsx
new file mode 100644
index 0000000..7f33046
--- /dev/null
+++ b/src/components/Form/Document/DocumentInfoForm.tsx
@@ -0,0 +1,29 @@
+/*
+ * 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 { Person } from "./../../../interfaces";
+import "./../Form.scss";
+
+import SelectClientForm from "./../People/SelectClientForm";
+
+interface Props {
+ savedPeople: Person[]
+}
+
+const DocumentInfoForm: React.FC<Props> = (props) => {
+ return (
+ <div className={"DocumentInfoForm"}>
+ <SelectClientForm
+ savedPeople={props.savedPeople}
+ />
+ </div>
+ );
+}
+
+export default DocumentInfoForm;