You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import { addDecorator } from '@storybook/react'
|
|
import { withThemesProvider } from 'storybook-addon-styled-component-theme'
|
|
|
|
import { lightTheme, darkTheme } from '../src/features/Theme/config'
|
|
|
|
const themes = [darkTheme, lightTheme]
|
|
addDecorator(withThemesProvider(themes))
|
|
|