Created
November 2, 2018 15:17
-
-
Save yonahforst/fedb1fb6094de3dfc0efb4c7bb8c2618 to your computer and use it in GitHub Desktop.
todo list events
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const events = [ | |
{ type: 'TodoAdded', title: 'Learn CQRS' }, | |
{ type: 'TodoAdded', title: 'Save the world' }, | |
{ type: 'TodoCompleted', index: 0 }, | |
{ type: 'TodoRemoved', index: 1 }, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment