1
0
Fork 0

feat(fs.share): Recurse in ReadMore component

This commit is contained in:
Joost De Cock 2022-01-16 12:21:36 +01:00
parent c7f3788732
commit 149ad90feb
3 changed files with 12 additions and 11 deletions

View file

@ -19,7 +19,7 @@ const mdxCustomComponents = (app) => ({
Fixme: props => <Popout {...props} fixme />,
Link: props => <Popout {...props} link />,
Note: props => <Popout {...props} note />,
ReadMore: props => <ReadMore {...props} app={app} />,
ReadMore: props => <ReadMore {...props} app={app} slug={app.slug} />,
Related: props => <Popout {...props} related />,
Tip: props => <Popout {...props} tip />,
Warning: props => <Popout {...props} warning />,