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

+ 8 - 8
dashboard/src/pages/studio/analysis/index.tsx

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