退货有区别吗React.Fragment
function Foo(){
return (
<>
<div>hey</div>
<div>hey</div>
</>
)
}
或者返回一个组件数组
function Bar(){
return (
[
<div>hey</div>,
<div>hey</div>,
]
)
}
?
例如,这里是一个代码框。