mirror of
https://github.com/owncast/owncast.git
synced 2025-01-08 01:27:31 +03:00
19 lines
402 B
TypeScript
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;
|