Store typedef on the helper and use it to show a parameter list

This commit is contained in:
Olivier Guyot
2019-09-24 09:12:51 +02:00
parent 5ee3063d01
commit 6929cb3001
8 changed files with 70 additions and 11 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ function API({pageContext: {docs}}) {
{helper.modules
.filter(module => module.visible)
.map(module => (
<Module key={module.id} module={module} />
<Module key={module.id} module={module} helper={helper} />
))}
</Page>
);