react-native-walkthrough-tooltip
react-native-walkthrough-tooltip copied to clipboard
React 18 Support
trafficstars
Can this library add support for React 18? Thanks!
would this be as simple as bumping the react dependency? or is there an incompatibility?
https://github.com/jasongaare/react-native-walkthrough-tooltip/blob/master/package.json#L40
Please, add support for React > 18, this librsry cant install in react narive >.70
I approve this.
I used overrides to solve the problem as this is a version specification issue with the @types/react package.
{
"name": "my-app",
"dependencies": {
"react": "18.1.0",
"react-native": "0.70.5",
"react-native-walkthrough-tooltip": "1.5.0"
},
"devDependencies": {
"@types/react": "18.0.24",
"@types/react-native": "0.70.5"
},
"overrides": {
"react-native-walkthrough-tooltip": {
"@types/react": "18.0.24"
}
},
Update?