我使用create-react-app创建了一个react应用,并添加了一个按钮组件,即按钮的CSS。当我为按钮加载故事时,不会为按钮加载样式。在下面粘贴相关文件。我需要做任何配置以使它启动并以样式运行吗?
组件:index.js
import React, { Component } from 'react';
import styles from './style.css';
class CustomButton extends Component{
render(){
return (
<button className={styles.customButton}>Hello</button>
);
}
}
export default CustomButton;
style.css:
.customButton {
border: 1px solid red;
padding: 10px;
background-color: rgb(223, 19, 19);
}
故事文件:
import React from 'react';
import CustomButton from '../../src/index';
import { storiesOf } from '@storybook/react';
const story = storiesOf("Custom button",module);
story.addWithJSX("simple",() => <CustomButton/>);
系统信息:
Environment Info:
System:
OS: Windows 7 6.1.7601
CPU: (2) x64 Intel(R) Core(TM) i3-2370M CPU @ 2.40GHz
Binaries:
Node: 10.16.0 - C:\Program Files\nodejs\node.EXE
Yarn: 1.22.4 - C:\Program Files (x86)\Yarn\bin\yarn.CMD
npm: 6.9.0 - C:\Program Files\nodejs\npm.CMD
Browsers:
Chrome: 84.0.4147.125
npmPackages:
@storybook/addon-info: ^5.3.19 => 5.3.19
@storybook/components: ^5.3.19 => 5.3.19
@storybook/preset-create-react-app: ^3.1.4 => 3.1.4
@storybook/react: ^5.3.19 => 5.3.19
答案 0 :(得分:7)
为了使storybook
与webpack
一起使用,必须首先在main.js
目录下创建文件.storybook
。然后添加style-loader
+ css-loader
加载程序以解决您的css
导入。请记住,启用modules: true
中的css-loader
选项可帮助您导入课程:
.storybook\main.js
const path = require('path');
module.exports = {
webpackFinal: async config => {
// Remove the existing css rule
config.module.rules = config.module.rules.filter(
f => f.test.toString() !== '/\\.css$/'
);
config.module.rules.push({
test: /\.css$/,
use: ['style-loader', {
loader: 'css-loader',
options: {
modules: true, // Enable modules to help you using className
}
}],
include: path.resolve(__dirname, '../src'),
});
return config;
},
};
答案 1 :(得分:1)
tmhao2005的答案很有帮助。但是请注意,这可能是在您的主应用程序中复制了一些Webpack规则配置,如果您以后决定进行调整或添加其他CSS加载器,则可能会出现不同步的情况。例如,如果您决定添加postcss-loader
,则需要记住将其添加到webpack.config.js
中的应用程序的Webpack配置和{{ 1}}(提示:您将不记得了!)。
这是一个稍干净的调整版本,它告诉Storybook重用应用程序的Webpack CSS规则配置。此版本将与您的主应用程序的Webpack规则保持同步:
.storybook/main.js
我在Storybook 6.0.21上对此进行了测试,并且效果很好。