├── 01-Start ├── .gitignore ├── .vscode │ └── launch.json ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json └── src │ ├── App.css │ ├── App.js │ ├── App.scss │ ├── Card.js │ ├── assets │ ├── bathtub.svg │ ├── bed-left-side.svg │ ├── car-compact.svg │ ├── house-location-pin.svg │ └── logo.svg │ ├── data │ └── data.js │ ├── index.js │ └── registerServiceWorker.js ├── 02-End ├── .gitignore ├── .vscode │ └── launch.json ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json └── src │ ├── App.css │ ├── App.js │ ├── App.scss │ ├── Card.js │ ├── assets │ ├── bathtub.svg │ ├── bed-left-side.svg │ ├── car-compact.svg │ ├── house-location-pin.svg │ └── logo.svg │ ├── data │ └── data.js │ ├── index.js │ └── registerServiceWorker.js ├── README.md └── v116-React-Image-Slideshow-Tutorial.jpg /01-Start/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/.gitignore -------------------------------------------------------------------------------- /01-Start/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/.vscode/launch.json -------------------------------------------------------------------------------- /01-Start/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/README.md -------------------------------------------------------------------------------- /01-Start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/package-lock.json -------------------------------------------------------------------------------- /01-Start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/package.json -------------------------------------------------------------------------------- /01-Start/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/public/favicon.ico -------------------------------------------------------------------------------- /01-Start/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/public/index.html -------------------------------------------------------------------------------- /01-Start/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/public/manifest.json -------------------------------------------------------------------------------- /01-Start/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/src/App.css -------------------------------------------------------------------------------- /01-Start/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/src/App.js -------------------------------------------------------------------------------- /01-Start/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/src/App.scss -------------------------------------------------------------------------------- /01-Start/src/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/src/Card.js -------------------------------------------------------------------------------- /01-Start/src/assets/bathtub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/src/assets/bathtub.svg -------------------------------------------------------------------------------- /01-Start/src/assets/bed-left-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/src/assets/bed-left-side.svg -------------------------------------------------------------------------------- /01-Start/src/assets/car-compact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/src/assets/car-compact.svg -------------------------------------------------------------------------------- /01-Start/src/assets/house-location-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/src/assets/house-location-pin.svg -------------------------------------------------------------------------------- /01-Start/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/src/assets/logo.svg -------------------------------------------------------------------------------- /01-Start/src/data/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/src/data/data.js -------------------------------------------------------------------------------- /01-Start/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/src/index.js -------------------------------------------------------------------------------- /01-Start/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/01-Start/src/registerServiceWorker.js -------------------------------------------------------------------------------- /02-End/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/.gitignore -------------------------------------------------------------------------------- /02-End/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/.vscode/launch.json -------------------------------------------------------------------------------- /02-End/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/README.md -------------------------------------------------------------------------------- /02-End/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/package-lock.json -------------------------------------------------------------------------------- /02-End/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/package.json -------------------------------------------------------------------------------- /02-End/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/public/favicon.ico -------------------------------------------------------------------------------- /02-End/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/public/index.html -------------------------------------------------------------------------------- /02-End/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/public/manifest.json -------------------------------------------------------------------------------- /02-End/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/src/App.css -------------------------------------------------------------------------------- /02-End/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/src/App.js -------------------------------------------------------------------------------- /02-End/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/src/App.scss -------------------------------------------------------------------------------- /02-End/src/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/src/Card.js -------------------------------------------------------------------------------- /02-End/src/assets/bathtub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/src/assets/bathtub.svg -------------------------------------------------------------------------------- /02-End/src/assets/bed-left-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/src/assets/bed-left-side.svg -------------------------------------------------------------------------------- /02-End/src/assets/car-compact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/src/assets/car-compact.svg -------------------------------------------------------------------------------- /02-End/src/assets/house-location-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/src/assets/house-location-pin.svg -------------------------------------------------------------------------------- /02-End/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/src/assets/logo.svg -------------------------------------------------------------------------------- /02-End/src/data/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/src/data/data.js -------------------------------------------------------------------------------- /02-End/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/src/index.js -------------------------------------------------------------------------------- /02-End/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/02-End/src/registerServiceWorker.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/README.md -------------------------------------------------------------------------------- /v116-React-Image-Slideshow-Tutorial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ihatetomatoes/react-image-slideshow/HEAD/v116-React-Image-Slideshow-Tutorial.jpg --------------------------------------------------------------------------------