forked from juanfe190/React-Native-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
37 lines (34 loc) · 1.04 KB
/
index.js
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
30
31
32
33
34
35
36
37
/*****************************************
************ UI COMPONENTS ***************
******************************************/
import Button from './components/button.js';
import SideMenu from './components/sidemenu.js';
import AndroidToolbar from './components/androidtoolbar.js';
import CachedImage from './components/cachedImage.js';
/*****************************************
********* FUNCTIONAL COMPONENTS **********
******************************************/
import Router from './Router.js';
import BaseStore from './BaseStore.js';
import BaseAction from './BaseAction.js';
import AppDispatcher from './FluxDispatcher.js';
import Cache from './CacheService.js';
import ErrorInterceptor from './ErrorInterceptor.js';
import http from './HttpService.js';
import HttpInterceptor from './src/http/httpInterceptor.js';
import FormValidator from './FormValidator.js';
module.exports = {
Button,
SideMenu,
AndroidToolbar,
CachedImage,
Router,
BaseStore,
BaseAction,
AppDispatcher,
Cache,
ErrorInterceptor,
http,
HttpInterceptor,
FormValidator
}