最終更新:2022-08-04 (木) 12:01:28 (644d)  

React.Component
Top / React.Component

https://ja.reactjs.org/docs/react-component.html

https://ja.reactjs.org/docs/react-api.html#reactcomponent

メソッド

React.Component.render()

  • 描画すべきものの軽量な記述形式であるReact要素というものを返す
  • return (JSX)

イベント

componentDidMount

componentDidUpdate

componentWillUnmount

その他

React/JSX

  • <div />
  • React.createElement('div')
  • に変換される

関連