UNPKG

reactatouille

Version:

Reactatouille is a command-line tool to help quickly start and build a new React project, using Redux, Webpack, Gulp (You can add your own tasks, yo!), HMR/Hot Module Reload, Sass (architecture best practices), Jest, Enzyme, popmotion, Redux devtools (bro

10 lines (8 loc) 181 B
// example/actions.js import * as t from './actionTypes' export const setAppLoadTime = (time = new Date()) => ({ type: t.APP_LOAD_TIME, payload: { appLoadTime: time } })