副作用フック
code:before.ts
componentDidUpdate(prevProps, prevState) {
if (prevState.count !== this.state.count) {
document.title = You clicked ${this.state.count} times;
}
}
code:after.ts
useEffect(() => {
document.title = You clicked ${count} times;
}, count); // Only re-run the effect if count changes.