auto-determine copyright year

This commit is contained in:
Collin M. Barrett 2019-08-24 09:06:55 -05:00
parent 3f0dd3a0d1
commit d3f8752e77

View file

@ -21,7 +21,7 @@ const App: React.FC = () => {
<AllListsTable />
</div>
</Content>
<Footer style={{ textAlign: 'center' }}>©2019 Collin M. Barrett</Footer>
<Footer style={{ textAlign: 'center' }}>©{(new Date()).getFullYear()} Collin M. Barrett</Footer>
</Layout>
);
}