From 4545db101abfdcac91cc7cabf7bde180b54e9be9 Mon Sep 17 00:00:00 2001 From: jackyzha0 Date: Sun, 10 May 2020 15:43:35 -0700 Subject: add password stuff + expiry stuff --- frontend/src/components/Footer.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 frontend/src/components/Footer.js (limited to 'frontend/src/components/Footer.js') diff --git a/frontend/src/components/Footer.js b/frontend/src/components/Footer.js new file mode 100644 index 0000000..ecd85e1 --- /dev/null +++ b/frontend/src/components/Footer.js @@ -0,0 +1,22 @@ +import React from 'react'; +import styled from 'styled-components' + +const SpacedFooter = styled.div` + margin: 1em 0; +` + +const Link = (props) => { + return ( + {props.name} + ); +} + +const Footer = () => { + return ( + + © 2020 — , + + ); +} + +export default Footer; \ No newline at end of file -- cgit v1.2.3