fedisearch/application/src/components/Footer.tsx

12 wiersze
249 B
TypeScript
Czysty Zwykły widok Historia

2022-01-01 19:37:33 +00:00
import React from 'react'
2022-11-03 18:38:01 +00:00
const Footer: React.FC = () => {
2022-01-01 19:37:33 +00:00
return (
<footer className={'text-center mt-5'}>
2022-01-03 12:12:50 +00:00
©{(new Date()).getFullYear()} <a href={'https://skorpil.cz'}>Štěpán Škorpil</a>
2022-01-01 19:37:33 +00:00
</footer>
)
}
export default Footer