Skip to content

Instantly share code, notes, and snippets.

@MicroBenz
Created December 4, 2017 16:18
Show Gist options
  • Save MicroBenz/d07164ed1d2af9038f5470a6686e64f5 to your computer and use it in GitHub Desktop.
Save MicroBenz/d07164ed1d2af9038f5470a6686e64f5 to your computer and use it in GitHub Desktop.
YWC15
import { defineAction } from 'redux-define';
const CREATE_TODO = defineAction('CREATE_TODO', ['ERROR', 'SUCCESS'], 'my-app');
// result:
console.log('' + CREATE_TODO); // my-app/CREATE_TODO
console.log('' + CREATE_TODO.ERROR); // my-app/CREATE_TODO_ERROR
console.log('' + CREATE_TODO.SUCCESS); // my-app/CREATE_TODO_SUCCESS;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment