├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .prettierrc.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── jestconfig.json ├── package.json ├── src ├── main.ts ├── useMount │ ├── README.md │ ├── example.html │ ├── index.ts │ └── useMount.test.ts └── useUnmount │ ├── README.md │ ├── example.html │ ├── index.ts │ └── useUnmount.test.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /lib -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/README.md -------------------------------------------------------------------------------- /jestconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/jestconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/useMount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/src/useMount/README.md -------------------------------------------------------------------------------- /src/useMount/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/src/useMount/example.html -------------------------------------------------------------------------------- /src/useMount/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/src/useMount/index.ts -------------------------------------------------------------------------------- /src/useMount/useMount.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/src/useMount/useMount.test.ts -------------------------------------------------------------------------------- /src/useUnmount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/src/useUnmount/README.md -------------------------------------------------------------------------------- /src/useUnmount/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/src/useUnmount/example.html -------------------------------------------------------------------------------- /src/useUnmount/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/src/useUnmount/index.ts -------------------------------------------------------------------------------- /src/useUnmount/useUnmount.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/src/useUnmount/useUnmount.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortigo-digital/react-hooks/HEAD/tsconfig.json --------------------------------------------------------------------------------