Merge pull request #1793 from 3af/patch-2

Add missing Input import
old
Rubén Moya 2018-01-23 18:13:59 +01:00 committed by GitHub
commit a91c04b73e
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);