Fix web project build errors
This commit is contained in:
@@ -2,7 +2,11 @@ import { Layout } from 'antd';
|
||||
|
||||
const { Footer } = Layout;
|
||||
|
||||
export default function FooterComponent(props) {
|
||||
interface Props {
|
||||
version: string;
|
||||
}
|
||||
|
||||
export default function FooterComponent(props: Props) {
|
||||
const { version } = props;
|
||||
|
||||
return <Footer style={{ textAlign: 'center', height: '64px' }}>Footer: Owncast {version}</Footer>;
|
||||
|
||||
Reference in New Issue
Block a user