Skip to content

Instantly share code, notes, and snippets.

View jmenglis's full-sized avatar

Josh English jmenglis

View GitHub Profile

Keybase proof

I hereby claim:

  • I am jmenglis on github.
  • I am joshenglish (https://keybase.io/joshenglish) on keybase.
  • I have a public key ASDH8rSZOkATwYEUotppJ-SUpzU2qzBVnhkSLIdsW6PGmgo

To claim this, I am signing this object:

@jmenglis
jmenglis / Action.js
Created March 21, 2017 20:09
Simple Actions
export const addTodo = (text) => {
return {
type: 'ADD_TODO',
id: (nextTodoId++).toString(),
text,
};
};