WalletConnect / web3modal-react-native

Web3Modal React-Native SDK
https://web3modal.com
Apache License 2.0
46 stars 15 forks source link

[bug] Can't find variable: React #58

Closed therealharpaljadeja closed 1 year ago

therealharpaljadeja commented 1 year ago

Link to minimal reproducible example

Just using the package in react-native screens

Summary

I get this error from web3modal package

image

List of related npm package versions

react-native - 0.69.5 @web3modal/react-native: ^1.0.0-alpha.5

ignaciosantise commented 1 year ago

hey @therealharpaljadeja 👋 Adding "jsx": "react-jsx" in your tsconfig.json file should work.

// tsconfig.json
{
  "compilerOptions": {
    ...
    "jsx": "react-jsx"
    ...
  },
}

More info here

therealharpaljadeja commented 1 year ago

Tried didn't work 😅

image image
therealharpaljadeja commented 1 year ago

This solved it!

https://github.com/facebook/react-native/issues/34351