forked from react-navigation/react-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-navigation.web.js
More file actions
22 lines (17 loc) · 809 Bytes
/
Copy pathreact-navigation.web.js
File metadata and controls
22 lines (17 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
* @noflow - get/set properties not yet supported by flow. also `...require(x)` is broken #6560135
*/
module.exports = {
// Core
get createNavigationContainer() { return require('./createNavigationContainer').default; },
get StateUtils() { return require('./StateUtils').default; },
get addNavigationHelpers() { return require('./addNavigationHelpers').default; },
get NavigationActions() { return require('./NavigationActions').default; },
// Navigators
get createNavigator() { return require('./navigators/createNavigator').default; },
// Routers
get StackRouter() { return require('./routers/StackRouter').default; },
get TabRouter() { return require('./routers/TabRouter').default; },
// HOCs
get withNavigation() { return require('./views/withNavigation').default; },
};