aboutsummaryrefslogtreecommitdiff
path: root/src/components/Pages/HomePage.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Pages/HomePage.tsx')
-rw-r--r--src/components/Pages/HomePage.tsx23
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;