index.js 246 B

1234567891011121314
  1. import * as types from "./../constants/ActionTypes";
  2. export const newBackground = (color) => {
  3. return {
  4. type: types.NEW_BACKGROUND,
  5. color
  6. };
  7. };
  8. export const newName = (name) => {
  9. return {
  10. type: types.NEW_NAME,
  11. name
  12. };
  13. };