This is a demo application boilerplate for usage in your own setups. This is not a boilerplate to create your own application.
- spa-starter-kit (Web Application)
- electron-webpack-boilerplate (Electron Desktop Application)
npm install --save-dev react-todo
import React from 'react'
import ReactDOM from 'react-dom'
// Import the app boilerplate
import { Root, configureStore } from 'react-todo'
// Create the store
const store = configureStore()
// Render to the #app element
ReactDOM.render(
<Root store={store} />,
document.getElementById('app')
)