frst Layout

This commit is contained in:
Suvodip
2024-07-22 21:52:54 +05:30
parent ccd6cd801f
commit 428cf0fffe
19 changed files with 470 additions and 378 deletions

View File

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

View File

@@ -1,5 +1,5 @@
import type { MetaFunction } from "@remix-run/node";
import TestComponent from '../component/TestComponent'; // Fix typo here
import TestComponent from '../components/TestComponent'; // Fix typo here
export default function Index() {
return (