-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
25 lines (21 loc) · 768 Bytes
/
App.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
import React, { Component } from 'react';
import { StackNavigator } from 'react-navigation';
import LoadingView from './src/react-native/components/loading-view';
import CameraView from './src/react-native/components/camera-view';
import VideoView from './src/react-native/components/video-view';
import GLRenderView from './src/react-native/components/gl-render-view';
import CustomWebView from './src/react-native/components/custom-web-view';
const MainApp = StackNavigator({
CustomWebView: { screen: CustomWebView },
WebGL: { screen: GLRenderView },
Camera: { screen: CameraView },
Video: { screen: VideoView },
Loading: { screen: LoadingView }
});
export default class App extends Component {
render() {
return (
<MainApp />
);
}
}