Created
April 20, 2019 22:48
-
-
Save treyhuffine/1a454e3fd3262fa7dea3fafb63db9394 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
interface OwnProps { | |
id: number; | |
} | |
const LaunchProfileContainer = ({ id }: OwnProps) => { | |
const { data, error, loading, refetch } = useLaunchProfileQuery({ | |
variables: { id: String(id) }, | |
}); | |
React.useEffect(() => { | |
refetch(); | |
}, [id]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment