-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.android.js
executable file
·62 lines (41 loc) · 1.51 KB
/
index.android.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import React, {Component} from 'react';
import {
AppRegistry,
} from 'react-native';
// 打卡应用
import ClockInApp from './src/clock_in/App';
AppRegistry.registerComponent('ClockIn', () => ClockInApp);
// 2FA
import TotpApp from './src/totp/App';
AppRegistry.registerComponent('TOTP', () => TotpApp);
// 个人名片模块
import UserCard from './src/userCard/App';
AppRegistry.registerComponent('UserCard', () => UserCard);
// 群名片
import GroupCard from './src/groupCard/App';
AppRegistry.registerComponent('GroupCard', () => GroupCard);
// 个人设置
import MySetting from './src/mySetting/App';
AppRegistry.registerComponent('MySetting', () => MySetting);
// 发现页
import FoundPage from './src/found/App';
AppRegistry.registerComponent('FoundPage', () => FoundPage);
// 浏览器
import WebView from './src/webView/App';
AppRegistry.registerComponent('WebView', () => WebView);
// 联系人
import Contacts from './src/contacts/App';
AppRegistry.registerComponent('Contacts', () => Contacts);
//客服系统相关
import Merchant from './src/merchant/App';
AppRegistry.registerComponent('Merchant', () => Merchant);
//搜索
import Search from './src/search/App';
AppRegistry.registerComponent("Search",() => Search);
// // 行程日历
// import TravelCalendar from './src/calendar/App';
//
// AppRegistry.registerComponent('TravelCalendar', () => TravelCalendar);
// 行程日历
import TravelCalendar from './src/calendar/App';
AppRegistry.registerComponent('TravelCalendar', () => TravelCalendar);