You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
338 B

  1. export const APP_FOCUS = 'APP_FOCUS';
  2. export const APP_UNFOCUS = 'APP_UNFOCUS';
  3. export const focusApp = () => ({
  4. type: APP_FOCUS,
  5. });
  6. export const unfocusApp = () => ({
  7. type: APP_UNFOCUS,
  8. });
  9. export const APP_LAYOUT_CHANGE = 'APP_LAYOUT_CHANGE';
  10. export const changeLayout = layout => ({
  11. type: APP_LAYOUT_CHANGE,
  12. layout,
  13. });