import s from './Footer.module.scss'; interface Props { version: string; } export default function FooterComponent(props: Props) { const { version } = props; return (
Powered by {version}
Documentation
Contribute
Source
); }