bs-p2/app/routes/student-dashboard2.tsx

11 lines
269 B
TypeScript

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>
);
}