Currently, Styleguidist uses ReactExample to render components. I want to wrap all the ReactExample components in a page with my custom theme provider. As you see below, all the ReactExample components fall outside of the root Styleguide Component.
<StyleGuide />
<ReactExample />
<ReactExample />
<ReactExample />
Is there a way for me to configure or modify styleguidist to add a parent component that will wrap all the components of styleguidist?
<ThemeProvider>
<StyleGuide />
<ReactExample />
<ReactExample />
<ReactExample />
</ThemeProvider>
You can wrap all components like this:
in styleguide.config.js:
components/Wrapper:
See: https://github.com/styleguidist/react-styleguidist/blob/master/docs/Cookbook.md#how-to-change-the-layout-of-a-style-guide