From e70b6d9ee1cb2296e69ea2501c22ddf347f9d7bd Mon Sep 17 00:00:00 2001 From: bloombar <2209098+bloombar@users.noreply.github.com> Date: Mon, 30 Sep 2024 11:15:11 -0400 Subject: [PATCH] year --- front-end/src/Footer.js | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/front-end/src/Footer.js b/front-end/src/Footer.js index c0cfdb9..ecef669 100644 --- a/front-end/src/Footer.js +++ b/front-end/src/Footer.js @@ -1,11 +1,13 @@ -import "./Footer.css" +import "./Footer.css"; + +const Footer = (props) => { + const year = new Date().getFullYear(); -const Footer = props => { return ( - ) -} + ); +}; -export default Footer +export default Footer;