blob: ce6185884997439e2610afcae0a4bb88405c40dd (
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
|
/*
* 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 Props {
setShowTransportForm: any
}
const InvoiceInfoMenu: React.FC<Props> = (props) => {
return (
<>
<div className={"InvoiceInfoMenu"}>
<input type="button" value="Add Transport Labels" onClick={() => props.setShowTransportForm(true)}/>
</div>
</>
);
}
export default InvoiceInfoMenu;
|