|
@@ -1,17 +1,15 @@
|
|
|
import { Outlet } from "react-router-dom";
|
|
import { Outlet } from "react-router-dom";
|
|
|
import { Layout } from "antd";
|
|
import { Layout } from "antd";
|
|
|
|
|
|
|
|
-import HeadBar from "../../../components/library/HeadBar";
|
|
|
|
|
import FooterBar from "../../../components/library/FooterBar";
|
|
import FooterBar from "../../../components/library/FooterBar";
|
|
|
|
|
|
|
|
const Widget = () => {
|
|
const Widget = () => {
|
|
|
- return (
|
|
|
|
|
- <Layout>
|
|
|
|
|
- <HeadBar />
|
|
|
|
|
- <Outlet />
|
|
|
|
|
- <FooterBar />
|
|
|
|
|
- </Layout>
|
|
|
|
|
- );
|
|
|
|
|
|
|
+ return (
|
|
|
|
|
+ <Layout>
|
|
|
|
|
+ <Outlet />
|
|
|
|
|
+ <FooterBar />
|
|
|
|
|
+ </Layout>
|
|
|
|
|
+ );
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
export default Widget;
|
|
export default Widget;
|