Files
bs-p2/app/routes/about.tsx
2024-07-22 17:31:27 +05:30

11 lines
277 B
TypeScript

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