UNPKG

redux-state-sync

Version:

A middleware for redux to sync state in different tabs

11 lines (9 loc) 203 B
const todo = (state = '', action) => { switch (action.type) { case 'TODO_ON_CHANGE': return action.todo; default: return state; } }; export default todo;