Can't find variable: React

前端 未结 2 1877
一向
一向 2020-12-30 19:08

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 actio

2条回答
  •  一个人的身影
    2020-12-30 19:27

    In the latest version of React Native you must import React from 'react' package

    import React, {Component} from 'react';
    import {
    View,
    ...
    } from 'react-native';
    

提交回复
热议问题