You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
550 B
23 lines
550 B
import { Layout } from 'antd'; |
|
import { ServerStatusStore } from '../stores/ServerStatusStore'; |
|
import { ClientConfigStore } from '../stores/ClientConfigStore'; |
|
import { Content, Footer, Header, Sidebar } from '../ui'; |
|
|
|
function Main() { |
|
return ( |
|
<> |
|
<ServerStatusStore /> |
|
<ClientConfigStore /> |
|
<Layout> |
|
<Sidebar /> |
|
<Header /> |
|
<Layout className="site-layout" style={{ marginRight: 200 }}> |
|
<Content /> |
|
<Footer /> |
|
</Layout> |
|
</Layout> |
|
</> |
|
); |
|
} |
|
|
|
export default Main;
|
|
|