aboutsummaryrefslogtreecommitdiff
path: root/src/components/Menu/HomePageMenu.tsx
blob: db0938a8bcee5c532a5a3cb4267e8186d09c96ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * 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 { Link } from "react-router-dom";
import "./HomePageMenu.scss";

const HomePageMenu: React.FC = () => {
	return (
    <div className="HomePageMenu">
      <Link className="menuItem" to="BillingPage">
        Create Invoice
      </Link>
      <Link className="menuItem" to="pepe">
        Don't Create Invoice
      </Link>
    </div>
	)
}

export default HomePageMenu