Adjust the styled-component get theme snippet

This commit is contained in:
jonniebigodes 2021-04-14 22:41:13 +01:00
parent 8ffcdda6c9
commit 047c28afab

View File

@ -2,7 +2,13 @@
// .storybook/preview.js
import { ThemeProvider } from 'styled-components';
import { StoryContext, StoryGetter, StoryWrapper } from '@storybook/addons';
import { MyThemes } from '../my-theme-folder/my-theme-file'
// Function to obtain the intented theme
const getTheme= (themeName)=>{
return MyThemes[themeName]
}
const withThemeProvider=(Story,context)=>{
const theme = getTheme(context.globals.theme);