Skip to content

Instantly share code, notes, and snippets.

@marcaaron
Created August 12, 2018 19:01
Show Gist options
  • Save marcaaron/20c5fb5350bf6b80702389ce253864c6 to your computer and use it in GitHub Desktop.
Save marcaaron/20c5fb5350bf6b80702389ce253864c6 to your computer and use it in GitHub Desktop.
import React from 'react';
import { gql } from 'apollo-boost';
const FakeQuery = (props) => {
return props.children('Hello World');
}
const MyComponent = (props) => {
return (
<FakeQuery>
{ (props) => {
console.log(props);
return null;
}}
</FakeQuery>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment