Merge pull request #19367 from coofzilla/patch-2

This commit is contained in:
Kyle Gach 2022-10-05 20:55:05 -06:00 committed by GitHub
commit d2a4abd5ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,9 +14,9 @@ const withThemeProvider=(Story,context)=>{
const theme = getTheme(context.globals.theme);
return (
<ThemeProvider theme={theme}>
<Story {...context} />
<Story />
</ThemeProvider>
)
}
export const decorators = [withThemeProvider];
```
```