import { Routes, Route, Link, useLocation } from "react-router-dom"; import { AppointmentsPage } from "./pages/Appointments.js"; import { ClientsPage } from "./pages/Clients.js"; import { ServicesPage } from "./pages/Services.js"; import { StaffPage } from "./pages/Staff.js"; import { InvoicesPage } from "./pages/Invoices.js"; const NAV_LINKS = [ { to: "/", label: "Appointments" }, { to: "/clients", label: "Clients" }, { to: "/services", label: "Services" }, { to: "/staff", label: "Staff" }, { to: "/invoices", label: "Invoices" }, ]; export function App() { const location = useLocation(); return (
} /> } /> } /> } /> } />
); }