diff options
Diffstat (limited to 'src/components/Menu/InvoiceInfoMenu.tsx')
-rw-r--r-- | src/components/Menu/InvoiceInfoMenu.tsx | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/components/Menu/InvoiceInfoMenu.tsx b/src/components/Menu/InvoiceInfoMenu.tsx new file mode 100644 index 0000000..2c56f7e --- /dev/null +++ b/src/components/Menu/InvoiceInfoMenu.tsx @@ -0,0 +1,29 @@ +/* + * 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"; + +const InvoiceInfoMenu: React.FC = () => { + return ( + <div className={"InvoiceInfoMenu"}> + c + o + m + i + n + g + s + o + o + n + </div> + ); +} + +export default InvoiceInfoMenu; |