Created
November 6, 2018 23:39
-
-
Save dance2die/4f05ccbc6475189a3bc5468e586dd491 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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