owncast/web/components/layouts/Main.tsx

20 lines
402 B
TypeScript
Raw Normal View History

import { Layout } from 'antd';
import { ServerStatusStore } from '../stores/ServerStatusStore';
import { ClientConfigStore } from '../stores/ClientConfigStore';
2022-05-03 23:55:13 +02:00
import { Content, Header } from '../ui';
function Main() {
return (
<>
<ServerStatusStore />
<ClientConfigStore />
<Layout>
<Header />
2022-05-03 23:55:13 +02:00
<Content />
</Layout>
</>
);
}
export default Main;