Created
October 28, 2016 15:11
-
-
Save lmatteis/993e411deb290fa8c19cb3192c1ce342 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
| function Foo() { | |
| const onSearch = () => { console.log('search woo') }; | |
| const onResponse = () => { console.log('response woo')}; | |
| return ( | |
| <div className="field"> | |
| <View | |
| className="auto-complete" | |
| onSearch={onSearch} | |
| onResponse={onResponse} | |
| /> | |
| </div> | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment