我是ReactJS的新手.
我正在尝试使用下面的代码显示Hello world,但是我收到此错误消息:
我错过了什么?
App.js的代码
//App.js`
import React from 'react';
const App = () => "
index.js的代码
//index.js
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.render(
/public/index.html的代码
Meta charset="utf-8">
最佳答案
您不能将JSX元素包装在引号中.
原文链接:https://www.f2er.com/html/426263.html改变这个
const App = () => "
这样
const App = () =>
你也可以这样写
const App = () => {
return
或者像这样
const App = () => {
return (