Skip to content

Instantly share code, notes, and snippets.

@marcaaron
Created August 12, 2018 19:00
Show Gist options
  • Save marcaaron/ce001c58310d08106716d6ea7aa3739d to your computer and use it in GitHub Desktop.
Save marcaaron/ce001c58310d08106716d6ea7aa3739d to your computer and use it in GitHub Desktop.
const FakeQuery = (props) => {
return props.children();
}
const MyComponent = (props) => {
return (
<FakeQuery>
{ () => { return null } }
</FakeQuery>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment