owncast/web/components/layouts/Main.tsx
2022-05-03 23:55:13 +02:00

19 lines
402 B
TypeScript

import { Layout } from 'antd';
import { ServerStatusStore } from '../stores/ServerStatusStore';
import { ClientConfigStore } from '../stores/ClientConfigStore';
import { Content, Header } from '../ui';
function Main() {
return (
<>
<ServerStatusStore />
<ClientConfigStore />
<Layout>
<Header />
<Content />
</Layout>
</>
);
}
export default Main;