Skip to content Skip to sidebar Skip to footer

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';

Solution 3:

Add the constructor to before render

constructor(props) {

super(props); }

Post a Comment for "Can't Find Variable: React"