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

10 lines
242 B
TypeScript
Raw Normal View History

import { Layout } from 'antd';
const { Footer } = Layout;
export default function FooterComponent(props) {
const { version } = props;
2022-05-04 00:55:13 +03:00
return <Footer style={{ textAlign: 'center', height: '64px' }}>Footer: Owncast {version}</Footer>;
}