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 09:31:31 +03:00
interface Props {
version: string;
}
export default function FooterComponent(props: Props) {
const { version } = props;
2022-05-17 07:44:09 +03:00
return (
<Footer className={s.footer}>
2022-05-17 07:44:09 +03:00
<a href="https://owncast.online">{version}</a>
</Footer>
);
}