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/Pages/HomePage.tsx | |
parent | 6874be2c3016b872016ba32181823a8e1232a1a7 (diff) |
converted all the smaller files to tsx
Diffstat (limited to 'src/components/Pages/HomePage.tsx')
-rw-r--r-- | src/components/Pages/HomePage.tsx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/Pages/HomePage.tsx b/src/components/Pages/HomePage.tsx new file mode 100644 index 0000000..34a52bd --- /dev/null +++ b/src/components/Pages/HomePage.tsx @@ -0,0 +1,23 @@ +/* + * 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 "./HomePage.scss" + +import HomePageMenu from "./../Menu/HomePageMenu" + +const HomePage: React.FC = () => { + return ( + <div className="HomePage"> + <h1 className={"welcomeMessage"}>Welcome To OpenBills</h1> + <HomePageMenu /> + </div> + ); +} + +export default HomePage; |