Add src/app/teacher-dashboard/layout.tsx

This commit is contained in:
2026-03-06 21:46:59 +00:00
parent 4cb0280f09
commit 331be6c77c

View File

@@ -0,0 +1,7 @@
export default function TeacherDashboardLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}