Skip to content

Instantly share code, notes, and snippets.

@libcorrales
Last active August 10, 2021 20:30
Embed
What would you like to do?
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