Skip to content

Instantly share code, notes, and snippets.

@treyhuffine
Created April 20, 2019 22:48
Show Gist options
  • Save treyhuffine/1a454e3fd3262fa7dea3fafb63db9394 to your computer and use it in GitHub Desktop.
Save treyhuffine/1a454e3fd3262fa7dea3fafb63db9394 to your computer and use it in GitHub Desktop.
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