Руслан

Results 2 issues of Руслан

Add a hook that would simplify working with boolean values ``` /** * @param defaultValue initial value of the switch. Default {@link false} * @example * const [isOpen, turnIsOpenOn, turnIsOpenOff,...

For useDebounce hook add type parameter for returned Function. Example: ``` const useDebounce = any>( func: F, wait: number = 0, ): F => { return useMemo(() => debounce(func, wait),...