【发布时间】:2022-08-09 06:13:35
【问题描述】:
我在我的 react 应用程序中遇到错误,不确定错误本身来自哪里,并且代码似乎干净且没有错误,并且遵循最佳实践。
Error Log
Failed to compile.
./src/components/CourseList.jsx 74:14
Module parse failed: Unexpected token (74:14)
You may need an appropriate loader to handle this file type.
| columnNumber: 17
| }
> }, course?.title), /*#__PURE__*/React.createElement(\"button\", {
| className: \"delete-btn\",
| onClick: function onClick() {
courseList.jsx
<span className=\"course-title\">{course?.title}</span>
<button
className=\"delete-btn\"
onClick={() => {
removeCourse(course.id);
}}
>
Delete Course
</button>
标签: javascript reactjs zustand