Skip to content

Commit

Permalink
Merge branch 'release/0.5.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
hyldmo committed Feb 2, 2018
2 parents 3908e74 + bdbede0 commit 66cb9d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "emoji-keyboard",
"version": "0.5.1",
"version": "0.5.2",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
7 changes: 5 additions & 2 deletions src/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,12 @@ class App extends React.Component<{}, State> {
return (
<>
<main>
<h1 className="title">Emoji Keyboard <small>(Click to copy)</small></h1>
<h1 className="title">Emoji Keyboard</h1>
<div>
<input onChange={e => this.setState({ query: e.target.value })} value={query} placeholder="Search emojis" />
<input
placeholder="Search emojis (and click to copy)"
onChange={e => this.setState({ query: e.target.value })} value={query}
/>
</div>
{query.length === 0 && (
<div>
Expand Down

0 comments on commit 66cb9d0

Please sign in to comment.