aboutsummaryrefslogtreecommitdiff
path: root/src/components/Pages/HomePage.tsx
blob: 34a52bd01ae04223ef2825f7b877a34652e06600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;