visuddhinanda 6 месяцев назад
Родитель
Сommit
57ecd88657
1 измененных файлов с 19 добавлено и 0 удалено
  1. 19 0
      dashboard-v4/dashboard/src/pages/library/chat/index.tsx

+ 19 - 0
dashboard-v4/dashboard/src/pages/library/chat/index.tsx

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