aboutsummaryrefslogtreecommitdiff
path: root/src/components/Menu/InvoiceInfoMenu.tsx
blob: e51d0c23954130722bfb1ed4dd300c098521ad0c (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
/*
 * 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;