ReactJS中有三个点做什么
const peopleList = this.state.people.map( x => { return <Person key={x.name} {...x} />})
这段代码的“{... x}”是什么意思?
相关分类