fedisearch/application/src/components/Footer.tsx

12 wiersze
209 B
TypeScript
Czysty Zwykły widok Historia

2022-01-01 19:37:33 +00:00
import React from 'react'
const Footer:React.FC = () => {
return (
<footer>
©{(new Date()).getFullYear()} <a href={'https://skorpil.cz'}>skorpil.cz</a>
</footer>
)
}
export default Footer