Add SetupPage, LoginPage, DashboardPage, ProjectsPage, ExperimentPage, LivePage, ComparePage, and AdminPage as placeholder components. Wire up react-router-dom routing in App.tsx with BrowserRouter in main.tsx. Unknown routes redirect to dashboard. Install vitest + @testing-library/react and add 9 routing tests. Build passes cleanly.
8 lines
232 B
TypeScript
8 lines
232 B
TypeScript
export default function AdminPage() {
|
|
return (
|
|
<div className="p-8">
|
|
<h1 className="mb-4 text-2xl font-bold">Admin</h1>
|
|
<p className="text-gray-600">System administration and user management.</p>
|
|
</div>
|
|
);
|
|
}
|