├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.js ├── components ├── Card.js ├── Catch.js ├── I18n.js ├── SearchInput.js └── Shortcut.js ├── containers └── MovieDb.js ├── index.css ├── index.js ├── locales ├── en.json └── fr.json └── serviceWorker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/src/components/Card.js -------------------------------------------------------------------------------- /src/components/Catch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/src/components/Catch.js -------------------------------------------------------------------------------- /src/components/I18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/src/components/I18n.js -------------------------------------------------------------------------------- /src/components/SearchInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/src/components/SearchInput.js -------------------------------------------------------------------------------- /src/components/Shortcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/src/components/Shortcut.js -------------------------------------------------------------------------------- /src/containers/MovieDb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/src/containers/MovieDb.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/src/index.js -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/src/locales/fr.json -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smooth-code/react-hooks-workshop/HEAD/src/serviceWorker.js --------------------------------------------------------------------------------