2022-05-11 23:31:31 -07:00

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