owncast/web/components/ui/Footer/Footer.tsx

19 lines
343 B
TypeScript
Raw Normal View History

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