forked from aksonov/react-native-router-flux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
29 lines (28 loc) · 684 Bytes
/
index.js
File metadata and controls
29 lines (28 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import Actions from './src/Actions';
import * as ActionConst from './src/ActionConst';
import DefaultRenderer from './src/DefaultRenderer';
import TabbedView from './src/TabbedView';
import Modal from './src/Modal';
import NavBar from './src/NavBar';
import Reducer from './src/Reducer';
import Router from './src/Router';
import Scene from './src/Scene';
import Switch from './src/Switch';
import TabBar from './src/TabBar';
import getInitialStateFromRoot from './src/State';
import Util from './src/Util';
export {
Actions,
ActionConst,
DefaultRenderer,
Modal,
NavBar,
Reducer,
Router,
Scene,
Switch,
TabBar,
TabbedView,
getInitialStateFromRoot,
Util,
};