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

18 lines
332 B
TypeScript
Raw Normal View History

import { Layout } from 'antd';
const { Footer } = Layout;
2022-05-12 09:31:31 +03:00
interface Props {
version: string;
}
export default function FooterComponent(props: Props) {
const { version } = props;
2022-05-17 07:44:09 +03:00
return (
<Footer style={{ textAlign: 'center', height: '64px' }}>
<a href="https://owncast.online">{version}</a>
</Footer>
);
}