Skip to content

Instantly share code, notes, and snippets.

@dferber90
Last active May 25, 2018 07:18
Show Gist options
  • Save dferber90/eddefb9c5815c2f1469a2991a8eefcd9 to your computer and use it in GitHub Desktop.
Save dferber90/eddefb9c5815c2f1469a2991a8eefcd9 to your computer and use it in GitHub Desktop.
Test a Render Prop!
const SuperApp = () => (
<div style={{ height: '100%' }}>
<Mouse
render={({ x, y }) => (
<MouseDown
render={({ down }) => (
<h1>
The mouse position is ({x}, {y})
and the button is {down ? 'down' : 'up'}
</h1>
)}
/>
)}
/>
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment