├── .gitignore ├── .prettierrc ├── README.md ├── dogs-and-dependencies ├── .eslintignore ├── .gitignore ├── .prettierrc ├── .prettireignore ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── 1-hidden-bug.js │ ├── 2-revealed-bug.js │ ├── 3-fixed-version.js │ ├── bg.js │ ├── dogs.js │ ├── img │ │ ├── beagle.jpg │ │ ├── bernedoodle.jpg │ │ ├── bernese.jpg │ │ ├── cute-dogs.jpg │ │ ├── lab.jpg │ │ └── poodle.jpg │ ├── index.js │ └── styles.css └── yarn.lock └── slides ├── 00.mdx ├── 01.mdx ├── 02.0.jpg ├── 02.1.png ├── 03.mdx ├── 04.mdx ├── 05.mdx ├── 06.0.mdx ├── 06.1.png ├── 07.mdx ├── 08.mdx ├── 09.mdx └── 10.mdx /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/README.md -------------------------------------------------------------------------------- /dogs-and-dependencies/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | coverage 4 | public 5 | .docz 6 | -------------------------------------------------------------------------------- /dogs-and-dependencies/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/.gitignore -------------------------------------------------------------------------------- /dogs-and-dependencies/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/.prettierrc -------------------------------------------------------------------------------- /dogs-and-dependencies/.prettireignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | coverage 4 | public 5 | .docz 6 | package.json 7 | -------------------------------------------------------------------------------- /dogs-and-dependencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/package.json -------------------------------------------------------------------------------- /dogs-and-dependencies/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/public/favicon.ico -------------------------------------------------------------------------------- /dogs-and-dependencies/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/public/index.html -------------------------------------------------------------------------------- /dogs-and-dependencies/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/public/manifest.json -------------------------------------------------------------------------------- /dogs-and-dependencies/src/1-hidden-bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/1-hidden-bug.js -------------------------------------------------------------------------------- /dogs-and-dependencies/src/2-revealed-bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/2-revealed-bug.js -------------------------------------------------------------------------------- /dogs-and-dependencies/src/3-fixed-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/3-fixed-version.js -------------------------------------------------------------------------------- /dogs-and-dependencies/src/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/bg.js -------------------------------------------------------------------------------- /dogs-and-dependencies/src/dogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/dogs.js -------------------------------------------------------------------------------- /dogs-and-dependencies/src/img/beagle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/img/beagle.jpg -------------------------------------------------------------------------------- /dogs-and-dependencies/src/img/bernedoodle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/img/bernedoodle.jpg -------------------------------------------------------------------------------- /dogs-and-dependencies/src/img/bernese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/img/bernese.jpg -------------------------------------------------------------------------------- /dogs-and-dependencies/src/img/cute-dogs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/img/cute-dogs.jpg -------------------------------------------------------------------------------- /dogs-and-dependencies/src/img/lab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/img/lab.jpg -------------------------------------------------------------------------------- /dogs-and-dependencies/src/img/poodle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/img/poodle.jpg -------------------------------------------------------------------------------- /dogs-and-dependencies/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/index.js -------------------------------------------------------------------------------- /dogs-and-dependencies/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/src/styles.css -------------------------------------------------------------------------------- /dogs-and-dependencies/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/dogs-and-dependencies/yarn.lock -------------------------------------------------------------------------------- /slides/00.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/00.mdx -------------------------------------------------------------------------------- /slides/01.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/01.mdx -------------------------------------------------------------------------------- /slides/02.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/02.0.jpg -------------------------------------------------------------------------------- /slides/02.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/02.1.png -------------------------------------------------------------------------------- /slides/03.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/03.mdx -------------------------------------------------------------------------------- /slides/04.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/04.mdx -------------------------------------------------------------------------------- /slides/05.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/05.mdx -------------------------------------------------------------------------------- /slides/06.0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/06.0.mdx -------------------------------------------------------------------------------- /slides/06.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/06.1.png -------------------------------------------------------------------------------- /slides/07.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/07.mdx -------------------------------------------------------------------------------- /slides/08.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/08.mdx -------------------------------------------------------------------------------- /slides/09.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/09.mdx -------------------------------------------------------------------------------- /slides/10.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/react-hooks-pitfalls/HEAD/slides/10.mdx --------------------------------------------------------------------------------