0.3.1 • Published 8 years ago
pages-redux v0.3.1
pages-redux 
The declarative pages architecture for building web UI working with redux.
Documentation
To create a page reducer:
import {createPageReducer} from 'pages-redux';
let reducer = createPageReducer(yourInitialState);To create an normal page update action:
 import {createSetPagePropsAction} from 'pages-redux';
 let action = createSetPagePropsAction(['home-page', 'camera-page'], {flash: true});Installation
npm install pages-redux