私はちょうど反応ツールボックスが機能していませんか? (アプリケーションバーのスタイリングとリップル)が
<AppBar
leftIcon="menu"
onLeftIconClick={this.toggleDrawerActive}>
</AppBar>
ようAppBar
を含めましたそして、それは次のようになります。メニューアイコンがオフと黒の代わりに白である
お知らせ?
私はアイコン/ボタンをクリックするとリップルが私のセットアップが、何と間違って何かおそらく最後
Theresのにとどまりますか?
CSSモジュールを使いこなすのが難しいのだろうか?私のwebpack.config.js
以下。あなたがより多くの情報を必要とするかどうかを教えてください。 Github repo at commit
const path = require("path")
const HtmlWebpackPlugin = require("html-webpack-plugin")
const ExtractTextPlugin = require("extract-text-webpack-plugin")
const context = path.resolve(__dirname, "src")
module.exports = {
context,
entry: "./js/index.js",
output: {
path: path.resolve(__dirname, "build/js"),
filename: "index.js"
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
loader: "babel-loader",
options: {
plugins: [
[
"react-css-modules",
{
context
}
]
]
}
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: {
loader: "css-loader",
options: {
modules: true,
importLoaders: 1,
localIdentName: "[path]___[name]__[local]___[hash:base64:5]",
sourceMap: true
}
}
})
},
{
test: /\.s(a|c)ss$/,
use: ['style-loader', 'css-loader', 'sass-loader']
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: "./index.html",
filename: "index.html",
inject: "body"
}),
new ExtractTextPlugin("css/app.css")
],
devServer: {
contentBase: path.resolve(__dirname, "src"),
historyApiFallback: true
},
devtool: "source-map"
}
'反応-toolbox'を追加は、明示的に述べています。 webpackの例はwebpack 1にありますが、そこからwebpack 2の['postcss-loader'](https://github.com/postcss/postcss-loader#usage)の設定方法を調べるだけです。 –