Last active
May 7, 2018 03:46
-
-
Save kwunyeung/02c4191766404d5b0617867d92ffc6fa to your computer and use it in GitHub Desktop.
Search bar
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
toggleSearchInput = e => { | |
e.preventDefault(); | |
this.setState({isShown = !this.state.isShown}); | |
} | |
render(){ | |
return | |
<div> | |
(this.state.isShown? | |
<SearchInput />:''} | |
<img src="/icons/icon/ic-search.svg" alt="search" id="navi-img" onClick={this.toggleSearchInput}/> | |
</div> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment