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.
reactnative/App.tsx

26 lines
472 B

import { FC } from 'react'
import { NavigationContainer } from '@react-navigation/native';
import { MainStackNavitagor } from './src/navigator/MainStackNavigator';
import { AuthProvider } from './src/screens/login/AuthContext';
interface Props {
}
const App:FC <Props> = () => {
return (
<>
<NavigationContainer >
<AuthProvider>
<MainStackNavitagor/>
</AuthProvider>
</NavigationContainer>
</>
)
}
export default App;