mirror of
https://github.com/soconnor0919/hristudio.git
synced 2025-12-11 06:34:44 -05:00
14 lines
298 B
TypeScript
Executable File
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} />;
|
|
}
|