mirror of
https://github.com/owncast/owncast.git
synced 2024-11-27 08:29:57 +03:00
17 lines
332 B
TypeScript
17 lines
332 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' }}>
|
|
<a href="https://owncast.online">{version}</a>
|
|
</Footer>
|
|
);
|
|
}
|