This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web/components/Footer/Footer.tsx
2022-12-10 23:58:09 +01:00

10 lines
170 B
TypeScript

const Footer = () => {
return (
<div style={{ textAlign: "center" }}>
<p>&copy; Gractwo 2020-{new Date().getFullYear()}</p>
</div>
);
};
export default Footer;