Files
aramjonghu-site/frontend/src/App.jsx
T

19 lines
366 B
React

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 = <Home />;
if (path === "/stream") {
content = <Stream />;
}
return <Layout>{content}</Layout>;
}
export default App;