blob: da484ab543b4bb94cb6054201805199ed499c656 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*
* 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 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>
</form>
</div>
);
}
export default MetaInfoForm;
|