Guest User

Untitled

a guest
Apr 25th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. export const addTodo = ({
  2. id = randomId(),
  3. text = '',
  4. timeStamp = Date.now()
  5. } = {}) => ({
  6. type: ADD_CHAT,
  7. payload: { id, text, timeStamp }
  8. });
Add Comment
Please, Sign In to add comment