aboutsummaryrefslogtreecommitdiff
path: root/src/components/Menu/HomePageMenu.js
blob: 29295bb68614ca97f0d4d747a5c3bb85fa1ae97c (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
/*
 * 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 "./HomePageMenu.scss";

const HomePageMenu = () => {
	return (
    <div className="HomePageMenu">
      <span className="menuItem">
        Create Invoice
      </span>
      <span className="menuItem">
        Don't Create Invoice
      </span>
    </div>
	)
}

export default HomePageMenu