Created
September 1, 2019 21:56
-
-
Save ryanpedersen42/703d6325e82c874187a8c658d296f634 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
| // src/components/header/header.jsx | |
| import React from 'react'; | |
| import './header.styles.scss'; | |
| const Header = () => ( | |
| <div className='header'> | |
| <div className='logo'> | |
| S3cret Keep3r | |
| </div> | |
| <div className='options'> | |
| <a className='option' href='https://github.com/ryanpedersen42/RP-3Box'>GitHub</a> | |
| <div className='option' to='/'>Sign Out</div> | |
| </div> | |
| </div> | |
| ); | |
| export default Header; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment