2022-04-28 19:54:33 +03:00
|
|
|
import { Layout } from 'antd';
|
2022-07-11 02:42:35 +03:00
|
|
|
import s from './Footer.module.scss';
|
2022-04-28 19:54:33 +03:00
|
|
|
|
|
|
|
const { Footer } = Layout;
|
|
|
|
|
2022-05-12 09:31:31 +03:00
|
|
|
interface Props {
|
|
|
|
version: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function FooterComponent(props: Props) {
|
2022-04-29 00:36:05 +03:00
|
|
|
const { version } = props;
|
2022-04-28 19:54:33 +03:00
|
|
|
|
2022-05-17 07:44:09 +03:00
|
|
|
return (
|
2022-07-11 02:42:35 +03:00
|
|
|
<Footer className={s.footer}>
|
2022-05-17 07:44:09 +03:00
|
|
|
<a href="https://owncast.online">{version}</a>
|
|
|
|
</Footer>
|
|
|
|
);
|
2022-04-28 19:54:33 +03:00
|
|
|
}
|