Skip to content

Instantly share code, notes, and snippets.

@enkot
Last active September 2, 2017 23:07
Show Gist options
  • Save enkot/c93f441512f65dfeae6f0966ed4b30a4 to your computer and use it in GitHub Desktop.
Save enkot/c93f441512f65dfeae6f0966ed4b30a4 to your computer and use it in GitHub Desktop.
const Dispatcher = require('flux').Dispatcher;
const AppDispatcher = new Dispatcher();
/* ... */
addCard() {
AppDispatcher.dispatch({
actionType: 'ADD_ITEM',
city: 'Toronto'
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment