clinicpal / src /app /page.tsx
Vrda's picture
Deploy ClinIcPal frontend
9bc2f29 verified
raw
history blame contribute delete
285 Bytes
'use client';
import { AppShell } from '@/components/layout';
import { AnalyzeView, SettingsPanel } from '@/components/features';
export default function Home() {
return (
<AppShell
analyzeContent={<AnalyzeView />}
settingsContent={<SettingsPanel />}
/>
);
}