-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.android.js
More file actions
39 lines (33 loc) · 916 Bytes
/
Copy pathindex.android.js
File metadata and controls
39 lines (33 loc) · 916 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
30
31
32
33
34
35
36
37
38
39
/**
* 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 SplashScreen from './src/components/SplashScreen';
import LoginScreen from './src/components/LoginScreen';
import IntroScreen from './src/components/IntroScreen';
import LevelDescriptorComponent from './src/components/LevelDescriptorComponent';
import { Navigation } from 'react-native-navigation';
import {
StackNavigator,
} from 'react-navigation';
//import IntroScreen from './IntroScreen';
const App = StackNavigator({
Login : { screen: LoginScreen },
Intro: { screen: IntroScreen },
});
export default class HPSERatingApp extends Component {
render() {
return (
<LevelDescriptorComponent/>
);
}
}
AppRegistry.registerComponent('HPSERatingApp', () => HPSERatingApp);