UNPKG

@sirhall/use-latest-callback

Version:

React hook which returns the latest callback without changing the reference

5 lines (4 loc) 167 B
/** * React hook which returns the latest callback without changing the reference. */ export default function useLatestCallback<T extends Function>(callback: T): T;