2022-05-13 14:44:16 -07:00

14 lines
281 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' }}>Owncast {version}</Footer>;
}