mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
17 lines
287 B
JavaScript
17 lines
287 B
JavaScript
// import { CommonActions } from '@react-navigation/native';
|
|
|
|
let _navigator;
|
|
|
|
function setTopLevelNavigator(navigatorRef) {
|
|
_navigator = navigatorRef;
|
|
}
|
|
|
|
function navigate(name, params) {
|
|
_navigator.navigate(name, params);
|
|
}
|
|
|
|
export default {
|
|
navigate,
|
|
setTopLevelNavigator,
|
|
};
|