bs-p2/app/routes/knowledge-quest.tsx

11 lines
263 B
TypeScript

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