Skip to content

Instantly share code, notes, and snippets.

@pporche87
Created May 19, 2017 22:36
Show Gist options
  • Save pporche87/32da509a3d9c40d5ceb78f9460adea00 to your computer and use it in GitHub Desktop.
Save pporche87/32da509a3d9c40d5ceb78f9460adea00 to your computer and use it in GitHub Desktop.
import { StackNavigator } from 'react-navigation'
import PrimarySearch from './PrimarySearch'
import GymList from './GymList'
const gymFinderApp = StackNavigator({
PrimarySearch: {
screen: PrimarySearch
},
GymList: {
screen: GymList
}
})
export default gymFinderApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment