123456789101112131415161718192021 |
- import React from 'react';
- import { StyleSheet, Text, View } from 'react-native';
-
- // importing other files
- import Navigator from './routes/homeStack';
-
-
- export default function App() {
- return (
- <Navigator />
- );
- }
-
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- backgroundColor: '#fff',
- alignItems: 'center',
- justifyContent: 'center',
- },
- });
|