Skip to content

Commit

Permalink
Readme: fix unclosed jsx input tag
Browse files Browse the repository at this point in the history
  • Loading branch information
chentsulin authored and aweary committed Apr 14, 2018
1 parent d9ae76d commit e378e7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ const SearchBar = () => (
<div className="search-bar">
<State.Consumer selector={state => state.search}>
{(search) => (
<input value={state} onChange={setSearch}>
<input value={state} onChange={setSearch} />
)}
</State.Consumer>
</div>
Expand Down

0 comments on commit e378e7c

Please sign in to comment.