最終更新:2022-08-04 (木) 12:01:28 (856d)
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.Component.setState
- React.Component.forceUpdate?
React/JSX
<div />
- は
React.createElement('div')
- に変換される
関連
- React.createElement
- React.PureComponent?