Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created November 6, 2018 23:39
Show Gist options
  • Select an option

  • Save dance2die/4f05ccbc6475189a3bc5468e586dd491 to your computer and use it in GitHub Desktop.

Select an option

Save dance2die/4f05ccbc6475189a3bc5468e586dd491 to your computer and use it in GitHub Desktop.
export default () => (
<Downshift
onChange={selection => alert(`You selected ${selection.value}`)}
itemToString={item => (item ? item.value : '')}
>
{downshift => (
<div>
...
</div>
)}
</Downshift>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment