Przeglądaj źródła

:construction: create

visuddhinanda 3 lat temu
rodzic
commit
7ab489b836
1 zmienionych plików z 22 dodań i 0 usunięć
  1. 22 0
      dashboard/src/pages/studio/setting/index.tsx

+ 22 - 0
dashboard/src/pages/studio/setting/index.tsx

@@ -0,0 +1,22 @@
+import { Layout } from "antd";
+
+import LeftSider from "../../../components/studio/LeftSider";
+import { styleStudioContent } from "../style";
+import SettingArticle from "../../../components/auth/setting/SettingArticle";
+
+const { Content } = Layout;
+
+const Widget = () => {
+  return (
+    <Layout>
+      <Layout>
+        <LeftSider selectedKeys="setting" />
+        <Content style={styleStudioContent}>
+          <SettingArticle />
+        </Content>
+      </Layout>
+    </Layout>
+  );
+};
+
+export default Widget;