Simple minds think alike

より多くの可能性を

React

【React hooks】"Warning: Can't perform a React state update on an unmounted component."の止め方

React hooksで実装したSPAアプリをChromeで動かした際に、以下のWarningが表示されていたので対処してみました。 Warning: Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your applic…

Reactコンポーネントをうまく分割するためのテクニック〜カリー化〜

大きくなってしまったReactコンポーネントを小さく分割するにはカリー化が効果的だと感じています。 少しずつ機能を足していったら大きくなってしまって、次第に分割するのが怖くなってしまった そもそも、どう分割したら良いのか分からない というのが、コ…