diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-25 18:24:41 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-25 18:24:41 +0530 |
commit | 0d90508977837bec25f038fe5380e6fb3bc82745 (patch) | |
tree | f3e0eac29224dc46bbcdf59881f7912000624b3d /src/components/Menu/HomePageMenu.tsx | |
parent | 6874be2c3016b872016ba32181823a8e1232a1a7 (diff) |
converted all the smaller files to tsx
Diffstat (limited to 'src/components/Menu/HomePageMenu.tsx')
-rw-r--r-- | src/components/Menu/HomePageMenu.tsx | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/components/Menu/HomePageMenu.tsx b/src/components/Menu/HomePageMenu.tsx new file mode 100644 index 0000000..db0938a --- /dev/null +++ b/src/components/Menu/HomePageMenu.tsx @@ -0,0 +1,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 { Link } from "react-router-dom"; +import "./HomePageMenu.scss"; + +const HomePageMenu: React.FC = () => { + return ( + <div className="HomePageMenu"> + <Link className="menuItem" to="BillingPage"> + Create Invoice + </Link> + <Link className="menuItem" to="pepe"> + Don't Create Invoice + </Link> + </div> + ) +} + +export default HomePageMenu |