chore: format frontend with prettier

This commit is contained in:
forgejo-bot
2026-05-21 19:32:44 +00:00
parent 472648582f
commit 166dce9e2f
18 changed files with 485 additions and 503 deletions
+6 -6
View File
@@ -5,14 +5,14 @@ import Home from "./pages/Home";
import Stream from "./pages/Stream";
function App() {
const path = window.location.pathname.toLowerCase();
const path = window.location.pathname.toLowerCase();
let content = <Home />;
if (path === "/stream") {
content = <Stream />;
}
let content = <Home />;
if (path === "/stream") {
content = <Stream />;
}
return <Layout>{content}</Layout>;
return <Layout>{content}</Layout>;
}
export default App;