Skip to content

Instantly share code, notes, and snippets.

@FBosler
Created February 9, 2020 18:28
Show Gist options
  • Save FBosler/a535bc29f70edfbbf0fc2c5eac812183 to your computer and use it in GitHub Desktop.
Save FBosler/a535bc29f70edfbbf0fc2c5eac812183 to your computer and use it in GitHub Desktop.
Nav/index.jsx
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