0

19 lines
343 B
TypeScript
Raw Normal View History

import { Layout } from 'antd';
import s from './Footer.module.scss';
const { Footer } = Layout;
2022-05-11 23:31:31 -07:00
interface Props {
version: string;
}
export default function FooterComponent(props: Props) {
const { version } = props;
2022-05-16 21:44:09 -07:00
return (
<Footer className={s.footer}>
2022-05-16 21:44:09 -07:00
<a href="https://owncast.online">{version}</a>
</Footer>
);
}