react-tooltip 3.11.2 → 3.11.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -11,6 +11,8 @@
11
11
 
12
12
  [aronhelser](https://github.com/aronhelser) Passive maintainer - accepting PRs and doing minor testing, but not fixing issues or doing active development.
13
13
 
14
+ [Rogger794](https://github.com/Rogger794) Active maintainer - accepting PRs and doing minor testing, fixing issues or doing active development.
15
+
14
16
  [huumanoid](https://github.com/huumanoid) (inactive)
15
17
 
16
18
  We would gladly accept a new maintainer to help out!
@@ -21,6 +23,12 @@ We would gladly accept a new maintainer to help out!
21
23
  npm install react-tooltip
22
24
  ```
23
25
 
26
+ or
27
+
28
+ ```sh
29
+ yarn react-tooltip
30
+ ```
31
+
24
32
  ## Usage
25
33
  **Using NPM**
26
34
 
@@ -31,13 +39,13 @@ import ReactTooltip from 'react-tooltip'
31
39
  ```
32
40
 
33
41
  2 . Add data-tip = "your placeholder" to your element
42
+
34
43
  ```jsx
35
44
  <p data-tip="hello world">Tooltip</p>
36
45
  ```
37
46
 
38
47
  3 . Include react-tooltip component
39
48
 
40
-
41
49
  ```js
42
50
  <ReactTooltip />
43
51
  ```