Files
bs-p2/app/routes/_index.tsx
Suvodip 69ad64df28 s1
2024-07-26 20:41:32 +05:30

12 lines
240 B
TypeScript

import type { MetaFunction } from "@remix-run/node";
import TestComponent from '../components/StudentDashboard-no-content'; // Fix typo here
export default function Index() {
return (
<div>
<TestComponent />
</div>
);
}