Skip to content

Instantly share code, notes, and snippets.

@FBosler
Created February 10, 2020 06:48
Show Gist options
  • Save FBosler/0f16860a6164288b68ce7abcdcb09653 to your computer and use it in GitHub Desktop.
Save FBosler/0f16860a6164288b68ce7abcdcb09653 to your computer and use it in GitHub Desktop.
Footer/index.jsx
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