Last active
August 27, 2020 13:52
-
-
Save felippepuhle/3fb79e9db0f9bcf5179314ba285f71cd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { GraphQLType, getGlobalId } from '@relay' | |
// ... | |
const onPressTag = useCallback((tag: TagDataFromREST) => { | |
navigation.navigate(TagScreen.TAG_VIDEOS, { | |
id: getGlobalId({ | |
type: GraphQLType.GOLIVE_TAG, | |
resourceId: tag.id, | |
}), | |
}) | |
}, []) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment