owncast/web/components/ui/Footer/Footer.tsx

9 lines
226 B
TypeScript

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