owncast/web/components/ui/Footer/Footer.tsx
2022-05-03 23:55:13 +02:00

10 lines
242 B
TypeScript

import { Layout } from 'antd';
const { Footer } = Layout;
export default function FooterComponent(props) {
const { version } = props;
return <Footer style={{ textAlign: 'center', height: '64px' }}>Footer: Owncast {version}</Footer>;
}