aboutsummaryrefslogtreecommitdiff
path: root/src/components/Pages/HomePage.js
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-06-25 18:24:41 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-06-25 18:24:41 +0530
commit0d90508977837bec25f038fe5380e6fb3bc82745 (patch)
treef3e0eac29224dc46bbcdf59881f7912000624b3d /src/components/Pages/HomePage.js
parent6874be2c3016b872016ba32181823a8e1232a1a7 (diff)
converted all the smaller files to tsx
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;