Skip to content

Instantly share code, notes, and snippets.

@AllGistsEqual
Created February 15, 2020 23:15
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 AllGistsEqual/22e886dd3bea798a1c408316935286a3 to your computer and use it in GitHub Desktop.
Save AllGistsEqual/22e886dd3bea798a1c408316935286a3 to your computer and use it in GitHub Desktop.
import React from 'react'
import { NavigationContainer } from '@react-navigation/native'
import { createStackNavigator } from '@react-navigation/stack'
import SceneSplash from '../scenes/auth/sceneSplash'
const Stack = createStackNavigator()
const Navigation = () => (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name="Splash" component={SceneSplash} />
</Stack.Navigator>
</NavigationContainer>
)
export default Navigation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment