generated from dwd/boilarplate-remix-tailwind-antd
11 lines
269 B
TypeScript
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>
|
|
);
|
|
}
|