Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
19 lines
439 B
TypeScript
19 lines
439 B
TypeScript
|
|
import RootNavigationContainer from '../mobile/navigation/components/RootNavigationContainer';
|
|
|
|
const route = {
|
|
component: RootNavigationContainer,
|
|
href: undefined
|
|
};
|
|
|
|
/**
|
|
* Determines which route is to be rendered in order to depict a specific Redux
|
|
* store.
|
|
*
|
|
* @param {any} _stateful - Used on web.
|
|
* @returns {Promise<Object>}
|
|
*/
|
|
export function _getRouteToRender(_stateful?: any) {
|
|
return Promise.resolve(route);
|
|
}
|