aboutsummaryrefslogtreecommitdiff
path: root/src/components/Menu
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Menu')
-rw-r--r--src/components/Menu/InvoiceInfoMenu.tsx23
1 files changed, 10 insertions, 13 deletions
diff --git a/src/components/Menu/InvoiceInfoMenu.tsx b/src/components/Menu/InvoiceInfoMenu.tsx
index 2c56f7e..ce61858 100644
--- a/src/components/Menu/InvoiceInfoMenu.tsx
+++ b/src/components/Menu/InvoiceInfoMenu.tsx
@@ -9,20 +9,17 @@
import React from "react";
//import "./../Form.scss";
-const InvoiceInfoMenu: React.FC = () => {
+interface Props {
+ setShowTransportForm: any
+}
+
+const InvoiceInfoMenu: React.FC<Props> = (props) => {
return (
- <div className={"InvoiceInfoMenu"}>
- c
- o
- m
- i
- n
- g
- s
- o
- o
- n
- </div>
+ <>
+ <div className={"InvoiceInfoMenu"}>
+ <input type="button" value="Add Transport Labels" onClick={() => props.setShowTransportForm(true)}/>
+ </div>
+ </>
);
}