-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
24 lines (20 loc) · 994 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-native-gesture-handler';
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs';
import {NavigationContainer} from '@react-navigation/native';
import {createStackNavigator} from '@react-navigation/stack';
import React from 'react';
import {SafeAreaView, StyleSheet} from 'react-native';
import SupportScreen from './src/components/screens/SupportScreen';
import DigidexScreen from './src/components/screens/DigidexScreen';
import ProfileScreen from './src/components/screens/ProfileScreen';
import LoginScreen from './src/components/screens/LoginScreen';
import Ionicons from 'react-native-vector-icons/Ionicons';
import DigimonCard from './src/components/items/digimonCard';
import DigimonNavigation from './src/components/screens/NavigationScreen';
const Tab = createBottomTabNavigator();
const Stack = createStackNavigator();
const App = () => {
return <DigimonNavigation></DigimonNavigation>;
};
const styles = StyleSheet.create({});
export default App;