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

10 lines
226 B
TypeScript
Raw Normal View History

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