4
在反應組件內部放置函數的位置有一個偏好。我仍然在學習反應,所以試圖找出最佳實踐。渲染函數裏面的反應函數
class Content extends React.Component {
/// Whats the difference between putting functions here such as
Hello(){
}
render(){
/// or here
Hello(){
}
return()(
<div>blah blah </div>
)
}
}
謝謝大加讚賞。 –
我在我的項目上做了同樣的方式 – yussan