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.

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. }