aboutsummaryrefslogtreecommitdiff
path: root/src/components/Pages/HomePage.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Pages/HomePage.js')
-rw-r--r--src/components/Pages/HomePage.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/components/Pages/HomePage.js b/src/components/Pages/HomePage.js
deleted file mode 100644
index face5fd..0000000
--- a/src/components/Pages/HomePage.js
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * 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/*, { useState, useEffect } */from "react";
-import "./HomePage.scss"
-//import axios from "axios";
-
-//import BillingPage from "./BillingPage"
-import HomePageMenu from "./../Menu/HomePageMenu"
-
-const HomePage = () => {
- return (
- <div className="HomePage">
- <h1 className={"welcomeMessage"}>Welcome To OpenBills</h1>
- <HomePageMenu />
- </div>
- );
-}
-
-export default HomePage;