aboutsummaryrefslogtreecommitdiff
path: root/src/components/Form/Document/DocumentInfoForm.tsx
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-07-02 17:06:26 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-07-02 17:06:26 +0530
commite946f0e51cbe72cec6bdf599c8ee9c1be1f64e0b (patch)
tree54a2ee83a315a0d933bd303415249a3465ddc5c6 /src/components/Form/Document/DocumentInfoForm.tsx
parenteedde57b9caff20e1e7d25b43fcb8785e23b3e11 (diff)
working on the form info like date and stuff
Diffstat (limited to 'src/components/Form/Document/DocumentInfoForm.tsx')
-rw-r--r--src/components/Form/Document/DocumentInfoForm.tsx21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/components/Form/Document/DocumentInfoForm.tsx b/src/components/Form/Document/DocumentInfoForm.tsx
index 7f33046..6193233 100644
--- a/src/components/Form/Document/DocumentInfoForm.tsx
+++ b/src/components/Form/Document/DocumentInfoForm.tsx
@@ -6,7 +6,7 @@
* Copyright (c) 2021 Vidhu Kant Sharma
*/
-import React/*, { useState }*/ from "react";
+import React, { useState } from "react";
import { Person } from "./../../../interfaces";
import "./../Form.scss";
@@ -14,14 +14,33 @@ import SelectClientForm from "./../People/SelectClientForm";
interface Props {
savedPeople: Person[]
+ invoiceNumber: number
+ setInvoiceNumber: any
}
const DocumentInfoForm: React.FC<Props> = (props) => {
+ const [invoiceNumber, setInvoiceNumber] = useState<number>(props.invoiceNumber);
return (
<div className={"DocumentInfoForm"}>
<SelectClientForm
savedPeople={props.savedPeople}
/>
+
+ <div className={"documentInfoChild"}>
+ <label>
+ Invoice Number:
+ <input className={"smallInputBox"} type="number" step="0.0" value={invoiceNumber} onInput={
+ (event: React.FormEvent<HTMLInputElement>) => setInvoiceNumber(parseInt(event.currentTarget.value))
+ } required />
+ </label>
+
+ <label>
+ Invoice Date: <span>wtf do i do</span>
+ </label>
+ </div>
+
+ <div className={"documentInfoChild"}>
+ </div>
</div>
);
}