diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-24 20:00:10 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-24 20:00:10 +0530 |
commit | 5d2222d9fa782b94ba6787e5c6b23aab1e468308 (patch) | |
tree | 6bfd4a98ae121c3ce109510021ead96e1b2fa0cd /src/components/Form/Document/MetaInfoForm.tsx | |
parent | 5329b1fd16d0b8940f9526b523676dfb1cdbf317 (diff) |
Multiple minor bug fixes and convert more compnents to TS
Diffstat (limited to 'src/components/Form/Document/MetaInfoForm.tsx')
-rw-r--r-- | src/components/Form/Document/MetaInfoForm.tsx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/components/Form/Document/MetaInfoForm.tsx b/src/components/Form/Document/MetaInfoForm.tsx index da484ab..bcddad6 100644 --- a/src/components/Form/Document/MetaInfoForm.tsx +++ b/src/components/Form/Document/MetaInfoForm.tsx @@ -9,24 +9,7 @@ import React from "react"; import "./../Form.scss"; -interface Transport { - name: string, - vehicleNum: string, - method: string, // shipment method - gstin: string, - builty: string // goods receipt -} - const MetaInfoForm: React.FC = () => { - // don't push it to github! - const sampleTransport: Transport = { - name: "Own Vehicle", - vehicleNum: "HR61C9220", - method: "By Road", - gstin: "", - builty: "" - } - console.log(sampleTransport); return ( <div className={"MetaInfoForm"}> <form> |