diff --git a/frontend/app/components/shared/Copyright.tsx b/frontend/app/components/shared/Copyright.tsx index c01faedc0..635457a4f 100644 --- a/frontend/app/components/shared/Copyright.tsx +++ b/frontend/app/components/shared/Copyright.tsx @@ -1,11 +1,14 @@ import React from 'react'; -function Copyright() { - return ( -
- ); -} +const Copyright = React.memo(() => { + const currentYear = new Date().getFullYear(); + return ( + + ); +}); export default Copyright;