-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
36 lines (29 loc) · 955 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
25
26
27
28
29
30
31
32
33
34
35
36
import React, { useState, useEffect } from 'react';
import { Platform, Text, View, StyleSheet } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import DrawerNavigator from './Components/Navigator/DrawerNavigator'
import LoginNavigator from './Components/Navigator/LoginNavigator'
import LoginForm from './Components/Login/LoginForm';
import RegisterForm from './Components/Login/RegisterForm';
import { LogBox } from 'react-native';
export default function App() {
LogBox.ignoreLogs(['Setting a timer']);
return (
// <NavigationContainer>
// <DrawerNavigator />
// </NavigationContainer>
// <LoginForm></LoginForm>
// <RegisterForm />
<NavigationContainer>
<LoginNavigator />
</NavigationContainer>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
});