generated from dwd/boilarplate-remix-tailwind-antd
14 lines
313 B
TypeScript
14 lines
313 B
TypeScript
import type { MetaFunction } from "@remix-run/node";
|
|
import TestComponent from '../components/StudentDashboard-no-content'; // Fix typo here
|
|
import TimeLine from '~/components/Timeline';
|
|
|
|
export default function Index() {
|
|
return (
|
|
<div>
|
|
<TimeLine />
|
|
{/* <TestComponent /> */}
|
|
</div>
|
|
);
|
|
}
|
|
|