bs-p2/app/routes/_index.tsx

12 lines
226 B
TypeScript

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