Can't find variable: React

前端 未结 2 1845
一向
一向 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';
    
    0 讨论(0)
  • 2020-12-30 19:28
    import * as React from 'react';
    
    0 讨论(0)
提交回复
热议问题