Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hindmost/15e629e2fc12633cb33544a1dd3316e0 to your computer and use it in GitHub Desktop.
Save hindmost/15e629e2fc12633cb33544a1dd3316e0 to your computer and use it in GitHub Desktop.
cra-rich-chrome-ext article: src/actions/marker.js - final edition
export const SET_ENABLED = 'SET_ENABLED';
export const SET_STATS = 'SET_STATS';
export const SET_ICONHASH = 'SET_ICONHASH';
export const setEnabled = data => ({
type: SET_ENABLED, data
});
export const setStats = data => ({
type: SET_STATS, data
});
export const setIconHash = data => ({
type: SET_ICONHASH, data
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment