format code

This commit is contained in:
felinae98
2022-07-31 18:17:35 +08:00
parent 1d7d9b8fde
commit 584041aba6
7 changed files with 24 additions and 26 deletions
+2 -4
View File
@@ -18,16 +18,14 @@ function App() {
}, [globalConfLoaded]);
return (
<>
{ globalConfLoaded
globalConfLoaded
&& (
<Routes>
<Route path="/auth/:code" element={<Auth />} />
<Route path="/unauthed" element={<Unauthed />} />
<Route path="/home" element={<Home />} />
</Routes>
)}
</>
)
);
}