代码优化的问题
来源:3-6 TodoList 代码优化
王圆圆s
2019-07-06
index.js:1375 ./src/TodoItem.js
Line 11: Parsing error: Unexpected keyword ‘this’
9 |
10 | render() {
11 | const {content} = {this.props};
| ^
12 | return (
13 |
14 | {content}
写回答
1回答
-
Dell
2019-07-07
const {content} = this.props; 不需要加花括号
00
相似问题