You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/troubleshooting.mdx
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -169,15 +169,15 @@ To use `react-tooltip` on Next.js 13 without having to tag your component or pag
169
169
170
170
:::caution
171
171
172
-
Avoid naming the file `react-tooltip.tsx` (or with whichever extension your project uses), since it may interfere with your editor's autocomplete funcionality.
172
+
Avoid naming the file `react-tooltip.tsx` (or with whichever extension your project uses), since it may interfere with your editor's autocomplete functionality.
173
173
174
174
:::
175
175
176
176
```jsx
177
177
// src/components/ReactTooltip.tsx
178
178
'use client'
179
179
180
-
export*from'react-tooltip'
180
+
export{ Tooltip }from'react-tooltip'
181
181
```
182
182
183
183
And in the place that you are importing React Tooltip:
0 commit comments