import { BrowserRouter, Routes, Route, NavLink } from "react-router-dom"; import { Dashboard } from "./views/Dashboard.tsx"; import { MemoryQuery } from "./views/MemoryQuery.tsx"; import { MemoryDetail } from "./views/MemoryDetail.tsx"; import { CreateMemory } from "./views/CreateMemory.tsx"; import { RecentFeedback } from "./views/RecentFeedback.tsx"; import { RecentActivity } from "./views/RecentActivity.tsx"; export function App() { return (
} /> } /> } /> } /> } /> } />
); } const navStyle: React.CSSProperties = { display: "flex", gap: "1rem", padding: "0.75rem 0", borderBottom: "1px solid #ddd", }; const linkStyle: React.CSSProperties = { textDecoration: "none", color: "#333", padding: "0.25rem 0.5rem", borderRadius: "3px", fontSize: "0.9rem", };