Skip to content

Instantly share code, notes, and snippets.

@DevGW
Created December 29, 2022 13:43
Show Gist options
  • Save DevGW/8ddcfb19323068c17708d59478c465ce to your computer and use it in GitHub Desktop.
Save DevGW/8ddcfb19323068c17708d59478c465ce to your computer and use it in GitHub Desktop.
React App Template :: App.js
import * as React from 'react';
import NavStack from './src/screens/NavStack';
import { Provider as AuthProvider } from './src/context/AuthContext';
import { SafeAreaView } from 'react-native';
export default function App() {
return (
<SafeAreaView style={{flex: 1}}>
<AuthProvider>
<NavStack />
</AuthProvider>
</SafeAreaView>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment