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

getRouteToRender.native.ts 439B

123456789101112131415161718
  1. import RootNavigationContainer from '../mobile/navigation/components/RootNavigationContainer';
  2. const route = {
  3. component: RootNavigationContainer,
  4. href: undefined
  5. };
  6. /**
  7. * Determines which route is to be rendered in order to depict a specific Redux
  8. * store.
  9. *
  10. * @param {any} _stateful - Used on web.
  11. * @returns {Promise<Object>}
  12. */
  13. export function _getRouteToRender(_stateful?: any) {
  14. return Promise.resolve(route);
  15. }