Browse Source

:art: formatting

visuddhinanda 2 years ago
parent
commit
a1936a0735
1 changed files with 8 additions and 8 deletions
  1. 8 8
      dashboard/src/pages/library/dict/index.tsx

+ 8 - 8
dashboard/src/pages/library/dict/index.tsx

@@ -5,14 +5,14 @@ import HeadBar from "../../../components/library/HeadBar";
 import FooterBar from "../../../components/library/FooterBar";
 
 const Widget = () => {
-	// TODO
-	return (
-		<Layout>
-			<HeadBar selectedKeys="dict" />
-			<Outlet />
-			<FooterBar />
-		</Layout>
-	);
+  // TODO
+  return (
+    <Layout>
+      <HeadBar selectedKeys="dict" />
+      <Outlet />
+      <FooterBar />
+    </Layout>
+  );
 };
 
 export default Widget;