Skip to content
This repository was archived by the owner on Nov 9, 2024. It is now read-only.

Commit 00bfad0

Browse files
committed
Update README
1 parent 6ebc397 commit 00bfad0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
<div align="center">
66
<h1>Tippy.js for React</h1>
7+
<p>The complete tooltip and popover solution for React apps</p>
78
<a href="https://www.npmjs.com/package/@tippy.js/react">
8-
<img src="https://img.shields.io/npm/dm/@tippy.js/react.svg?color=%235599ff&style=for-the-badge" alt="npm Downloads per Month">
9+
<img src="https://img.shields.io/npm/dm/@tippy.js/react.svg?color=%235599ff&style=for-the-badge" alt="npm downloads per month">
910
<a>
1011
<a href="https://github.com/atomiks/tippy.js-react/blob/master/LICENSE">
1112
<img src="https://img.shields.io/npm/l/@tippy.js/react.svg?color=%23c677cf&style=for-the-badge" alt="MIT License">
1213
</a>
1314
<br>
1415
<br>
15-
The complete tooltip and popover solution for React apps
1616
</div>
1717

1818
---
@@ -261,13 +261,13 @@ import { Tooltip, Popover } from './Tippy'
261261

262262
## 🌈 Multiple tippys on a single element
263263

264-
You can nest the components, ensuring they have a `multiple` prop:
264+
You can nest the components like so:
265265

266266
```jsx
267-
<Tippy placement="bottom" multiple>
268-
<Tippy placement="left" multiple>
269-
<Tippy placement="right" multiple>
270-
<Tippy multiple>
267+
<Tippy content="Tooltip" placement="bottom">
268+
<Tippy content="Tooltip" placement="left">
269+
<Tippy content="Tooltip" placement="right">
270+
<Tippy content="Tooltip">
271271
<button />
272272
</Tippy>
273273
</Tippy>

0 commit comments

Comments
 (0)