Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 613 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 613 Bytes

Inferno redux saga boilerplate

Introduction

Starter pack with inferno + redux + saga + inferno-router. You can use JSX, generators and decorators as well. Css and Sass modules included. Includes Standard style lint and Hot Reloading.

Main render function

Inferno.render(
    <Provider store={store}>
      <Router history={history}>
        {routes}
      </Router>
    </Provider>,
    document.getElementById('root')
)

Installation

Run the following command in the root directory to install dependencies

yarn

Then run the start script

yarn start