({
mainContext,
gettingStartedLinks,
popularLinks,
productGroups,
}: Props)
| 24 | } |
| 25 | |
| 26 | export default function MainHomePage({ |
| 27 | mainContext, |
| 28 | gettingStartedLinks, |
| 29 | popularLinks, |
| 30 | productGroups, |
| 31 | }: Props) { |
| 32 | return ( |
| 33 | <MainContext.Provider value={mainContext}> |
| 34 | <DefaultLayout> |
| 35 | <HomePage |
| 36 | gettingStartedLinks={gettingStartedLinks} |
| 37 | popularLinks={popularLinks} |
| 38 | productGroups={productGroups} |
| 39 | /> |
| 40 | </DefaultLayout> |
| 41 | </MainContext.Provider> |
| 42 | ) |
| 43 | } |
| 44 | |
| 45 | type HomePageProps = { |
| 46 | popularLinks: Array<FeaturedLink> |
nothing calls this directly
no outgoing calls
no test coverage detected