react-toolbox-example
react-toolbox-example copied to clipboard
Example using react-toolbox
``` ERROR in ./~/react-toolbox/components/index.js Module build failed: SyntaxError: Unexpected token, expected { (24:7) 22 | export { default as ProgressBar } from './progress_bar'; 23 | export * from './radio'; >...
When I run `npm install`, then `npm start`, this happens. ``` ERROR in ./~/react-toolbox/lib/checkbox/Checkbox.js Module not found: Error: Can't resolve 'react-style-proptype' in '/Users/waleo/Code/ya-pack/node_modules/react-toolbox/lib/checkbox' @ ./~/react-toolbox/lib/checkbox/Checkbox.js 38:26-57 @ ./~/react-toolbox/lib/checkbox/index.js @ ./~/react-toolbox/lib/index.js...
suddenly now giving an error: ``` ERROR in ./~/react-toolbox/components/index.js Module build failed: SyntaxError: D:/Documents/react-toolbox-example-master/node_modules/react-toolbox/components/index.js: Unexpected token, expected { (24:7) ``` Steps to duplicate: exactly the same as the steps in...
Can you please show us an example how to load roboto-font and material-icons through webpack modules without using link ref tag? It seems there are conflict with sass-loader and toolbox-loader...
The IP address of dev server mentioned in readme file was '0.0.0.0:8080' whereas, according to webpack configuration file, it should be 'localhost:8080' or '127.0.0.1:8080'
Hello. I installed the react-toolbox-example project and was able to use all the components without any problems. All of them except for the "Tabs" component. This component simply doesn't show....
When I view the page, it seems to flash with the toolbox logo (very large, black colored, on a white page background), and then after that it goes to the...
This is more of discussion rather than issue report. Is there a suggested way to decrease the memory usage while the webpack is building? Just to run this example, even...
Hey, thank you for putting this resource together! I'm a little confused about the postcss config in a separate file. Where is webpack picking this up? This isn't an issue,...
- webpack.config.js file ``` const path = require('path'); const webpack = require('webpack'); const CleanWebpackPlugin = require('clean-webpack-plugin'); const ExtractTextPlugin = require('extract-text-webpack-plugin'); const extractPlugin = new ExtractTextPlugin({ filename: 'main.css' }); const HTMLWebpackPlugin...