summaryrefslogtreecommitdiff
path: root/InputBox.js
blob: 61158e06cb98f3fd0d97e4dc505ee00050161519 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const linkEvent = Inferno.linkEvent;


function InputBox(props)
{
   const { shaking, handleKeyDown } = props;
   
   const className = shaking ? '.shake' : '';
   
   return h(
      `input${className}`,
      {
         type: 'text',
         value: props.value,
         onKeyDown: handleKeyDown,
      }
   );
}