25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

useWillUnmount.d.ts 208 B

3 yıl önce
1234567
  1. /**
  2. * Attach a callback that fires when a component unmounts
  3. *
  4. * @param fn Handler to run when the component unmounts
  5. * @category effects
  6. */
  7. export default function useWillUnmount(fn: () => void): void;