備忘録
アンマウント時にデータの破棄がしたい時があったので
useEffect(() => {
console.log("mounted");
return () => {
console.log("unmounting....");
};
}, [])