Last active
March 23, 2020 21:43
-
-
Save kluu1/1ef67fbc7dcf34286edea51661042017 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Menu, Container } from 'semantic-ui-react' | |
| import Link from 'next/link' | |
| function Header() { | |
| return ( | |
| <Menu color="blue" inverted borderless> | |
| <Container textAlign="left"> | |
| <Link href="/"> | |
| <Menu.Item style={{ paddingLeft: 0 }}> | |
| <h1>Next Crypto Tracker</h1> | |
| </Menu.Item> | |
| </Link> | |
| </Container> | |
| </Menu> | |
| ) | |
| } | |
| export default Header |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment