Skip to content

Commit

Permalink
Merge pull request #45 from mbonell/mb/fix-footer
Browse files Browse the repository at this point in the history
Update year in footer dynamically
  • Loading branch information
mabuyo authored Jan 5, 2024
2 parents 6871f6c + b3d7da7 commit 36b4ecc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/components/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { colors, ApolloIcon } from '../styles';
const Footer = ({ children }) => {
return (
<FooterContainer>
2021 ©{' '}
{new Date().getFullYear()} ©{' '}
<LogoContainer>
<ApolloIcon width="100px" height="40px" />
</LogoContainer>
Expand Down
2 changes: 1 addition & 1 deletion final/client/src/components/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { colors, ApolloIcon } from '../styles';
const Footer = ({ children }) => {
return (
<FooterContainer>
2021 ©{' '}
{new Date().getFullYear()} ©{' '}
<LogoContainer>
<ApolloIcon width="100px" height="40px" />
</LogoContainer>
Expand Down

0 comments on commit 36b4ecc

Please sign in to comment.