owncast/web/components/ui/Footer/Footer.tsx
2022-05-11 23:31:31 -07:00

13 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>;
}