visuddhinanda 10 달 전
부모
커밋
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;