Here is the button,
and here is the button I clicked.
I can't say the button is not working, but compare to the example, it is so wire:
http://react-toolbox.com/#/components/button
The source code:
import {Button} from 'react-toolbox/lib/button';
...
<Button icon='add' label='Add this' flat primary />
The loader in webpack.config.js:
{
test: /react-toolbox\/.*.css/,
use: [
"style-loader",
{
loader: "css-loader",
options: {
modules: true,
sourceMap: true,
importLoaders: 1,
localIdentName: "[name]--[local]--[hash:base64:8]"
}
},
"postcss-loader" // has separate config, see postcss.config.js nearby
]
},
Please advise.