Files
hristudio/src/app/(dashboard)/studies/[id]/edit/page.tsx
Sean O'Connor dbfdd91dea feat: Redesign Landing, Auth, and Dashboard Pages
Also fixed schema type exports and seed script errors.
2026-02-01 22:28:19 -05:00

14 lines
298 B
TypeScript
Executable File

import { StudyForm } from "~/components/studies/StudyForm";
interface EditStudyPageProps {
params: Promise<{
id: string;
}>;
}
export default async function EditStudyPage({ params }: EditStudyPageProps) {
const { id } = await params;
return <StudyForm mode="edit" studyId={id} />;
}