Explorar o código

:construction: create

visuddhinanda %!s(int64=3) %!d(string=hai) anos
pai
achega
7ab489b836
Modificáronse 1 ficheiros con 22 adicións e 0 borrados
  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;