Can't Find Variable: React
I just started learning react so I apologise in advance if this may sound like a stupid question. I'm trying to make a simple iOS page with a button that triggers an action. I ha
Solution 1:
In the latest version of React Native you must import React from 'react' package
importReact, {Component} from'react';
import {
View,
...
} from'react-native';
Solution 2:
import * asReactfrom'react';
Post a Comment for "Can't Find Variable: React"