create components folder and Navbar

This commit is contained in:
Ruidy Nemausat 2020-05-12 11:21:46 +02:00
parent e46c6593bd
commit 10ea77887b

26
src/components/NavBar.tsx Normal file
View file

@ -0,0 +1,26 @@
import React from 'react';
import {FontAwesomeIcon} from '@fortawesome/react-fontawesome';
import {faCode} from '@fortawesome/free-solid-svg-icons';
const NavBar = () => (
<nav className="navbar bg-dark">
<h1>
<a href="dashboard.html">
<FontAwesomeIcon icon={faCode} /> {' '} DevBook
</a>
</h1>
<ul>
<li>
<a href="profiles.html">Developers</a>
</li>
<li>
<a href="register.html">Register</a>
</li>
<li>
<a href="login.html">Login</a>
</li>
</ul>
</nav>
);
export default NavBar;