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>
 
    