MCPcopy Create free account
hub / github.com/triggerdotdev/jsonhero-web / Index

Function Index

app/routes/index.tsx:32–56  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

30 );
31}
32export default function Index() {
33 const { toastMessage } = useLoaderData<LoaderData>();
34
35 return (
36 <div className="overflow-x-hidden">
37 {toastMessage && (
38 <ToastPopover
39 message={toastMessage.message}
40 title={toastMessage.title}
41 type={toastMessage.type}
42 key={toastMessage.id}
43 />
44 )}
45
46 <HomeHeader fixed={true} />
47 <HomeHeroSection />
48 <HomeInfoBoxSection />
49 <HomeEdgeCasesSection />
50 <HomeSearchSection />
51 <HomeCollaborateSection />
52 <HomeFeatureGridSection />
53 <HomeFooter />
54 </div>
55 );
56}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected