UNPKG

react-ui89

Version:

A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.

8 lines (7 loc) 254 B
/** * Runs the function the moment that this function is called. * * Sounds similar to useEffect(cb, []) but it actually is not. Unlike * useEffect, this function will be called immediately. */ export declare function useOnce(cb: () => void): void;