forked from Turba-Aenean/FitApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.js
38 lines (34 loc) · 1.04 KB
/
home.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
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import landingScreen from './jabroni/LandingPage';
import logInScreen from './jabroni/LogIn';
import signUpScreen from './jabroni/SignUp';
import clientHome from './jabroni/ClientHome';
import { StackNavigator } from 'react-navigation';
// import * as firebase from 'firebase';
// import TOKENS from './TOKENS.js';
// const firebaseConfig = {
// apiKey: TOKENS.firebaseConfig.apiKey,
// authDomain: TOKENS.firebaseConfig.authDomain,
// databaseURL: TOKENS.firebaseConfig.databaseURL,
// projectId: TOKENS.firebaseConfig.projectId,
// storageBucket: TOKENS.firebaseConfig.storageBucket,
// messagingSenderId: TOKENS.firebaseConfig.messagingSenderId,
// };
// const firebaseApp = firebase.initializeApp(firebaseConfig);
class Home extends React.Component {
render() {
return (
<View style={styles.container}>
<Navigator/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
});
export default Home
//