-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.android.js
46 lines (35 loc) · 944 Bytes
/
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
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View
} from 'react-native';
import { AnatomyExample } from './modules/anatomy/anatomyPage';
import { HomePage } from './modules/home/homepage';
import { SplashPage } from './modules/splashscreen/splashpage'
<<<<<<< HEAD
import * as Backendless from 'backendless';
=======
import Backendless from 'backendless';
>>>>>>> e0c0b89850170cef71959c505cf36230f8632d06
export default class poki extends Component {
constructor(props){
super(props);
}
render() {
return (
<HomePage />
);
}
}
var APP_ID = '89B337E2-B59B-5B73-FF20-40383CB68A00';
var APP_KEY = 'A6AB9D68-8E57-0D82-FF3C-7C68C922C700';
var APP_VER = 'v1';
Backendless.initApp(APP_ID, APP_KEY, APP_VER);
AppRegistry.registerComponent('poki', () => poki);