react 中的return 什么时候用小括号,什么时候用大括号?

return(

<div>....</div>

)

return(

<Component/>

)

return{...}

1:html 2:react 组件 3:js对象