React JS boilerplate made with ❤
This boiler plate comes with almost every essential webpack configuration.
You can initialize state as class objects. Do not need to initialize state inside the constructor.
class MyComponent extends Component {
state = {
sum: 0,
}
...
}
You can use arrow function to write functions without using bind.
class MyComponent extends Component {
constructor(props) {
super(props)
}
methodA = () => { ... }
}
You can import css, scss (or) sass, image, style into your js files directly. It's easy to track down 💪 the usage.
Hot reloading while editing files, and it reloads even non-index url 😉
This boiler plate comes with Redux installed to use readily
And much more