Skip to content

Instantly share code, notes, and snippets.

@santiagopoli
Last active April 30, 2017 19:06
Show Gist options
  • Save santiagopoli/3a515cffef5ddc949ee353009995f22a to your computer and use it in GitHub Desktop.
Save santiagopoli/3a515cffef5ddc949ee353009995f22a to your computer and use it in GitHub Desktop.
const FavoritesView = ({ favorites, onSelectFavorite }) =>
<View>
<FavoritesList favorites={favorites} onSelectFavorite={onSelectFavorite}/>
</View>
const FavoritesScreen = ({ navigation }) =>
<FavoritesView onSelectFavorite={favorite => navigation.push('FAVORITE', {{ favorite: favorite }})}/>
const NavigationStack = StackNavigator({
FAVORITES: FavoritesScreen,
FAVORITE: FavoriteScreen
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment