2021-10-20 22:29:21 +03:00
|
|
|
|
2022-01-25 14:55:57 +02:00
|
|
|
import RootNavigationContainer from '../mobile/navigation/components/RootNavigationContainer';
|
|
|
|
|
|
|
|
|
|
const route = {
|
|
|
|
|
component: RootNavigationContainer,
|
|
|
|
|
href: undefined
|
|
|
|
|
};
|
2021-10-20 22:29:21 +03:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determines which route is to be rendered in order to depict a specific Redux
|
|
|
|
|
* store.
|
|
|
|
|
*
|
2023-04-11 12:10:37 +03:00
|
|
|
* @param {any} _stateful - Used on web.
|
2021-10-20 22:29:21 +03:00
|
|
|
* @returns {Promise<Object>}
|
|
|
|
|
*/
|
2023-04-12 16:58:42 +03:00
|
|
|
export function _getRouteToRender(_stateful?: any) {
|
2021-10-20 22:29:21 +03:00
|
|
|
return Promise.resolve(route);
|
|
|
|
|
}
|