type CourseLayoutProps = { children: React.ReactNode; }; export function CourseLayout(props: CourseLayoutProps) { const { children } = props; return (
{children}
); }