Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. import constants from '../constants'
  2.  
  3. var initialState = {
  4. todos: []
  5. }
  6.  
  7. export default (state = initialState, action) => {
  8.  
  9. switch (action.type) {
  10.  
  11. default:
  12. return state
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement