This commit is contained in:
Suvodip
2024-07-23 21:49:48 +05:30
parent 84cab5341a
commit 5dc331a702
26 changed files with 2324 additions and 14 deletions

View File

@@ -0,0 +1,10 @@
import type { MetaFunction } from "@remix-run/node";
import StudentDashboard from '../components/StudentDashboard'
export default function Index() {
return (
<div>
<StudentDashboard /> {/* Ensure the component name matches the import */}
</div>
);
}