blob: ad8d59aeaed545f05231dc8c176b6c7c5d349fe7 (
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
30
31
32
33
|
/*
* 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 "./Header.css";
// import React, { useState } from "react";
const Header = () => {
// const [activeLink, updateActiveLink] = useState("home")
return (
<div className={"header"}>
<div class="placeholder">
<p class="inlineBlock">OpenBills</p>
</div>
<div className={"navBar"}>
<nav>
<a href="https://nhentai.net">Link1</a>
<a href="https://youtube.com">Link2</a>
<a href="https://google.com">Link3</a>
<a href="https://github.com">Link4</a>
</nav>
</div>
</div>
)
}
export default Header
|