Created
February 9, 2020 18:28
-
-
Save FBosler/a535bc29f70edfbbf0fc2c5eac812183 to your computer and use it in GitHub Desktop.
Nav/index.jsx
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 React from "react"; | |
import { StyledNav } from "./styles"; | |
const Nav = () => { | |
return ( | |
<StyledNav> | |
<StyledNav.Brand href="/"> | |
<img alt="" src="/logo192.png" width="30" height="30" className="d-inline-block align-top" /> Referral | |
App | |
</StyledNav.Brand> | |
</StyledNav> | |
); | |
}; | |
export default Nav; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment