提示错误:'React' must be in scope when using JSX react/react-in-jsx-scope
提示错误:‘React’ must be in scope when using JSXreact/react-in-jsx-scope代码如下:错误提示:在JSX作用域中使用JSX React/React时,“React”必须在作用域中。是因为React并未导入此时要把:import { Component } from "react";改为:import React,{ C...
·
提示错误:‘React’ must be in scope when using JSX react/react-in-jsx-scope
代码如下:
错误提示:在JSX作用域中使用JSX React/React时,“React”必须在作用域中。是因为React并未导入
此时要把:
import { Component } from "react";
改为:
import React,{ Component } from "react";
更多推荐
已为社区贡献1条内容
所有评论(0)