Skip to content

Instantly share code, notes, and snippets.

@neomatrixcode
Created November 1, 2020 01:35
Show Gist options
  • Save neomatrixcode/b1fc8fa1fa1acb68bb16daadb521b98c to your computer and use it in GitHub Desktop.
Save neomatrixcode/b1fc8fa1fa1acb68bb16daadb521b98c to your computer and use it in GitHub Desktop.
let nextTodoId = 0
export const agregarTarea = tarea => ({
type: "AGREGAR_TAREA"
, id: nextTodoId++
, text: tarea
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment