Rename layout files

This commit is contained in:
Gabe Kangas
2022-04-28 12:57:51 -07:00
parent b90eadcb4e
commit e0c073171d
4 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
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;