Add missing Input import

I ordered imports in alphabetical order.

Fixes #1792
old
3af 2018-01-23 10:56:51 +01:00 committed by GitHub
parent b381db4054
commit 51a335b9d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -5,8 +5,9 @@ A Tooltip is useful to show information on hover in any kind of component. We ha
<!-- example -->
```jsx
import Button from 'react-toolbox/lib/button';
import Tooltip from 'react-toolbox/lib/tooltip';
import Input from 'react-toolbox/lib/input';
import Link from 'react-toolbox/lib/link';
import Tooltip from 'react-toolbox/lib/tooltip';
const TooltipButton = Tooltip(Button);
const TooltipInput = Tooltip(Input);