vitamin-react-containers
v1.11.1
Published
list of reuseable basics containers in React
Downloads
38
Maintainers
Readme
Title of the project
Brief description
How to get the project running locally
Running the linter
Running the test suite
How to contribute
Steps to submit a PR
How to raise issues
A link to the Code of Conduct
A changelog
vitamin-react-containers have to be include in your loader in your webpack config:
...
module: {
rules: [
{
test: /\.(js|jsx)$/,
use: 'babel-loader',
exclude: /node_modules\/(?!(vitamin-react-containers)\/).*/
},
{
test: /\.(css|styl)$/,
loaders: ExtractTextPlugin.extract('css-loader!stylus-loader'),
exclude: /node_modules\/(?!(vitamin-react-containers)\/).*/
}
...
]
}