Skip to content

Instantly share code, notes, and snippets.

@marshallmurphy
Created May 8, 2020 21:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marshallmurphy/99b8220ab5aefcca9327e4e6a16ddc60 to your computer and use it in GitHub Desktop.
Save marshallmurphy/99b8220ab5aefcca9327e4e6a16ddc60 to your computer and use it in GitHub Desktop.
// actions/index.js
export const SETTINGS = 'SETTINGS';
export function updateSettings(data) {
return {
type: SETTINGS,
payload: {
data
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment