mirror of
https://github.com/owncast/owncast.git
synced 2025-01-23 00:23:54 +03:00
13 lines
289 B
TypeScript
13 lines
289 B
TypeScript
import { Layout } from 'antd';
|
|
|
|
const { Footer } = Layout;
|
|
|
|
interface Props {
|
|
version: string;
|
|
}
|
|
|
|
export default function FooterComponent(props: Props) {
|
|
const { version } = props;
|
|
|
|
return <Footer style={{ textAlign: 'center', height: '64px' }}>Footer: Owncast {version}</Footer>;
|
|
}
|