owncast/web/components/ui/Footer/Footer.tsx
2022-05-16 21:44:09 -07:00

17 lines
332 B
TypeScript

import { Layout } from 'antd';
const { Footer } = Layout;
interface Props {
version: string;
}
export default function FooterComponent(props: Props) {
const { version } = props;
return (
<Footer style={{ textAlign: 'center', height: '64px' }}>
<a href="https://owncast.online">{version}</a>
</Footer>
);
}