dengdeyan's picture
visilog
d905dfb
raw
history blame contribute delete
473 Bytes
import React from "react";
import Home from "./pages/Home";
import VisitLog from "./pages/VisitLog";
function App() {
// Read the 'page' query parameter from the URL
const urlParams = new URLSearchParams(window.location.search);
const page = urlParams.get("page");
// Conditionally render the component based on the query parameter
if (page === "visit-log") {
return <VisitLog />;
}
// Default to the Home page
return <Home />;
}
export default App;