promptlooper/frontend/src/pages/ComparePage.tsx
John Lightner 4cd0b8a1c8 MAESTRO: Initialize frontend routing with 8 placeholder page components and vitest test suite
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.
2026-04-07 02:03:48 -05:00

8 lines
238 B
TypeScript

export default function ComparePage() {
return (
<div className="p-8">
<h1 className="mb-4 text-2xl font-bold">Compare</h1>
<p className="text-gray-600">Compare results across runs and experiments.</p>
</div>
);
}