CSS 样式表选择器
轻松添加额外的样式表,在你的故事之间切换。
安装
npm i css-stylesheet-switcher
使用
import { addParameters } from '@storybook/react';
addParameters({
themeStylesheetSelector: {
stylesheets: [
{
id: 'Theme 1',
title: 'Theme 1',
url: 'css/someCss1.css'
},
{
id: 'Theme 2',
title: 'Theme 2',
url: 'css/someCss2.css'
}
]
}
});