Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created July 25, 2018 08:13
Show Gist options
  • Save amandeepmittal/11ef8958a02e1d47db606e747e1db7b1 to your computer and use it in GitHub Desktop.
Save amandeepmittal/11ef8958a02e1d47db606e747e1db7b1 to your computer and use it in GitHub Desktop.
import React from 'react';
import { StackNavigator } from 'react-navigation';
import ScreenOne from './src/stack/ScreenOne';
import ScreenTwo from './src/stack/ScreenTwo';
import ScreenThree from './src/stack/ScreenThree';
const App = StackNavigator({
ScreenOne: { screen: ScreenOne },
ScreenTwo: { screen: ScreenTwo },
ScreenThree: { screen: ScreenThree }
});
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment