-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
37 lines (32 loc) · 1.04 KB
/
App.js
File metadata and controls
37 lines (32 loc) · 1.04 KB
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
import React, { Component } from 'react';
import {
AppRegistry,
} from 'react-native';
import { StackNavigator } from 'react-navigation';
import Home from './app/components/home/home';
import NextGame from './app/components/home/nextGame';
import Login from './app/components/login/login';
import Profile from './app/components/profile/profile';
import MemberProfile from './app/components/profile/memberProfile';
import Avatar from './app/components/avatar/avatar';
import Groups from './app/components/groups/groups';
import Settings from './app/components/settings/settings';
const App = StackNavigator({
Login: { screen: Login },
Profile: { screen: Profile },
Avatar: { screen: Avatar },
Groups: { screen: Groups },
Home: { screen: Home },
NextGame: { screen: NextGame },
Settings: { screen: Settings },
MemberProfile: {screen: MemberProfile},
});
// Link to Clubhouse
export default class MyApp extends Component {
componentWillMount() {
}
render() {
return <App />;
}
}
AppRegistry.registerComponent('MyApp', () => MyApp);