Created
February 10, 2020 06:48
-
-
Save FBosler/0f16860a6164288b68ce7abcdcb09653 to your computer and use it in GitHub Desktop.
Footer/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 { Link } from "react-router-dom"; | |
import { StyledFooter } from "./styles"; | |
const Footer = () => { | |
return ( | |
<StyledFooter sticky="bottom"> | |
<div style={{ float: "left" }}>© 2020 Copyright: Fabian Bosler</div> | |
<div style={{ float: "right", marginLeft: "auto" }}> | |
<Link to="/about">About</Link> <Link to="/about">Impressum</Link> | |
</div> | |
</StyledFooter> | |
); | |
}; | |
export default Footer; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment