├── .eslintrc.cjs ├── .gitignore ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── Examples │ ├── JasExample.tsx │ └── KeyboardEvents.tsx ├── assets │ └── react.svg ├── index.css ├── main.tsx ├── utils │ └── customHooks │ │ ├── useCycle.ts │ │ ├── useDebounce.ts │ │ ├── useInView.ts │ │ ├── useKeyboardEventAsync.ts │ │ ├── useLocalStorage.ts │ │ ├── useMousePointer.ts │ │ ├── useTimer.ts │ │ └── useWindowDimension.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Examples/JasExample.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Examples/KeyboardEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/Examples/KeyboardEvents.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/utils/customHooks/useCycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/utils/customHooks/useCycle.ts -------------------------------------------------------------------------------- /src/utils/customHooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/utils/customHooks/useDebounce.ts -------------------------------------------------------------------------------- /src/utils/customHooks/useInView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/utils/customHooks/useInView.ts -------------------------------------------------------------------------------- /src/utils/customHooks/useKeyboardEventAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/utils/customHooks/useKeyboardEventAsync.ts -------------------------------------------------------------------------------- /src/utils/customHooks/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/utils/customHooks/useLocalStorage.ts -------------------------------------------------------------------------------- /src/utils/customHooks/useMousePointer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/utils/customHooks/useMousePointer.ts -------------------------------------------------------------------------------- /src/utils/customHooks/useTimer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/utils/customHooks/useTimer.ts -------------------------------------------------------------------------------- /src/utils/customHooks/useWindowDimension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/src/utils/customHooks/useWindowDimension.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Albx68/react-ts-custom-hooks/HEAD/vite.config.ts --------------------------------------------------------------------------------