fix: 🐛 fix useDebounce import

This commit is contained in:
streamich 2019-07-17 00:21:06 +02:00
parent 599efdb6b6
commit 40b33dabed

View File

@ -1,4 +1,4 @@
import { useUpdateEffect } from '..';
import useUpdateEffect from './useUpdateEffect';
const useDebounce = (fn: () => any, ms: number = 0, args: any[] = []) => {
useUpdateEffect(() => {