mirror of
https://github.com/owncast/owncast.git
synced 2025-01-08 01:27:31 +03:00
9 lines
242 B
TypeScript
9 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>;
|
|
}
|