-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.android.js
53 lines (47 loc) · 1.14 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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View
} from 'react-native';
// import APITest from './App';
// AppRegistry.registerComponent('APIExample', () => APITest);
import StackNavigator from './App';
const Realm = require('realm');
//class <project-name> extends Component {
// constructor(props) {
// super(props);
// this.state = { realm: null };
// }
//
// componentWillMount() {
// Realm.open({
// schema: [{name: 'Dog', properties: {name: 'string'}}]
// }).then(realm => {
// realm.write(() => {
// realm.create('Dog', {name: 'Rex'});
// });
// this.setState({ realm });
// });
// }
//
// render() {
// const info = this.state.realm
// ? 'Number of dogs in this Realm: ' + this.state.realm.objects('Dog').length
// : 'Loading...';
//
// return (
// <View style={styles.container}>
// <Text style={styles.welcome}>
// {info}
// </Text>
// </View>
// );
// }
//}
AppRegistry.registerComponent('APIExample', () => StackNavigator);