prettier and package.json fix

This commit is contained in:
2026-05-21 21:32:03 +02:00
parent c3debba6c2
commit 6274478d7e
18 changed files with 465 additions and 485 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;