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

actions.js 373B

12345678910111213141516
  1. import { MOBILE_BROWSER_PAGE_IS_SHOWN } from './actionTypes';
  2. import './reducer';
  3. /**
  4. * Returns an action that mobile browser page is shown and there is no need
  5. * to show it on other pages.
  6. *
  7. * @returns {{
  8. * type: MOBILE_BROWSER_PAGE_IS_SHOWN
  9. * }}
  10. */
  11. export function mobileBrowserPageIsShown() {
  12. return {
  13. type: MOBILE_BROWSER_PAGE_IS_SHOWN
  14. };
  15. }