unmount

[1/1]

  1. Reactコンポーネントの自己アンマウント
    React/Redux/TypeScriptにおいて、コンポーネントを自身からアンマウントする方法は、主にReduxのdispatch機能を利用して達成されます。Action Creator アンマウントの操作をトリガーするアクションを作成します。export const unmountComponent = () => ({ type: 'UNMOUNT_COMPONENT', });