Skip to content

Instantly share code, notes, and snippets.

@libcorrales
Last active August 10, 2021 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save libcorrales/96c780f83f4dcbefa4391572e57b25e8 to your computer and use it in GitHub Desktop.
Save libcorrales/96c780f83f4dcbefa4391572e57b25e8 to your computer and use it in GitHub Desktop.
React Navigation - Starting Sample
import * as React from 'react';
import { NavigationContainer } from '@react-navigation/native';
const App = () => {
return (
<NavigationContainer>
{/* Rest of your app code */}
</NavigationContainer>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment