-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
24 lines (21 loc) · 846 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 * as React from "react";
// // // import { Text, View, StyleSheet, TextInput, Button, TouchableOpacity, NavigatingContainer } from 'react-native';
// // // import Constants from 'expo-constants';
// import { useFonts } from "expo-font";
// // // import { initializeApp } from 'firebase/app';
// import Navigator from "routes\homeStack.js";
// const App = () => {
// return <Navigator />;
// };
// export default App;
import * as React from "react";
// // import { Text, View, StyleSheet, TextInput, Button, TouchableOpacity, NavigatingContainer } from 'react-native';
// // import Constants from 'expo-constants';
import { useFonts } from "expo-font";
// // import { initializeApp } from 'firebase/app';
import Navigator from "./homeStack";
const App = () => {
return <Navigator />;
};
console.log("App.js");
export default App;