bs-p2/app/routes/about.tsx

11 lines
278 B
TypeScript

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