aboutsummaryrefslogtreecommitdiff
path: root/src/components/Menu/InvoiceInfoMenu.tsx
blob: 2c56f7ebf610e74ab0d0e0ef59084cdb7ba256ab (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
27
28
29
/*
 * 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 "./../Form.scss";

const InvoiceInfoMenu: React.FC = () => {
  return (
    <div className={"InvoiceInfoMenu"}>
      c
      o
      m
      i
      n
      g
      s
      o
      o
      n
    </div>
  );
}

export default InvoiceInfoMenu;