import "./App.css"; import Layout from "./components/Layout"; import Home from "./pages/Home"; import Stream from "./pages/Stream"; function App() { const path = window.location.pathname.toLowerCase(); let content = ; if (path === "/stream") { content = ; } return {content}; } export default App;