You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
479 B

import { FC } from 'react';
import { Text, View } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { MainStack } from './src/screen/main/MainStack';
import { AuthProvider } from './src/screen/main/AuthContext';
interface Props {
}
const App:FC <Props> = () => {
return (
<>
<NavigationContainer>
<AuthProvider>
<MainStack/>
</AuthProvider>
</NavigationContainer>
</>
)
}
export default App;