您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

actions.js 510B

1234567891011121314151617181920212223242526272829
  1. // @flow
  2. import { HIDE_APP_SETTINGS, SHOW_APP_SETTINGS } from './actionTypes';
  3. /**
  4. * Redux-signals the request to hide the app settings modal.
  5. *
  6. * @returns {{
  7. * type: HIDE_APP_SETTINGS
  8. * }}
  9. */
  10. export function hideAppSettings() {
  11. return {
  12. type: HIDE_APP_SETTINGS
  13. };
  14. }
  15. /**
  16. * Redux-signals the request to open the app settings modal.
  17. *
  18. * @returns {{
  19. * type: SHOW_APP_SETTINGS
  20. * }}
  21. */
  22. export function showAppSettings() {
  23. return {
  24. type: SHOW_APP_SETTINGS
  25. };
  26. }