slovocast/app/src/frontend/layout/footer.tsx

14 lines
219 B
TypeScript

import { FC } from 'hono/jsx';
// const currentYear = new Date().getFullYear();
const Footer: FC = (props) => {
return (
<footer>
<div>{props.copyright}</div>
</footer>
);
};
export default Footer;