visuddhinanda 2 лет назад
Родитель
Сommit
e201727e45
1 измененных файлов с 8 добавлено и 10 удалено
  1. 8 10
      dashboard/src/pages/studio/anthology/index.tsx

+ 8 - 10
dashboard/src/pages/studio/anthology/index.tsx

@@ -7,16 +7,14 @@ import { styleStudioContent } from "../style";
 const { Content } = Layout;
 
 const Widget = () => {
-	return (
-		<Layout>
-			<Layout>
-				<LeftSider selectedKeys="anthology" />
-				<Content style={styleStudioContent}>
-					<Outlet />
-				</Content>
-			</Layout>
-		</Layout>
-	);
+  return (
+    <Layout>
+      <LeftSider selectedKeys="anthology" />
+      <Content style={styleStudioContent}>
+        <Outlet />
+      </Content>
+    </Layout>
+  );
 };
 
 export default Widget;