├── README.md ├── final-space-finished ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.tsx │ ├── components │ │ ├── CharacterCard.tsx │ │ └── Slider │ │ │ ├── SliderItem.tsx │ │ │ ├── SliderItemStyles.ts │ │ │ ├── SliderStyles.ts │ │ │ └── index.tsx │ ├── index.tsx │ └── react-app-env.d.ts └── tsconfig.json └── final-space-start-here ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── components │ └── Slider │ │ ├── SliderItem.tsx │ │ ├── SliderItemStyles.ts │ │ ├── SliderStyles.ts │ │ └── index.tsx ├── index.tsx └── react-app-env.d.ts └── tsconfig.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/README.md -------------------------------------------------------------------------------- /final-space-finished/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/.gitignore -------------------------------------------------------------------------------- /final-space-finished/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/README.md -------------------------------------------------------------------------------- /final-space-finished/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/package-lock.json -------------------------------------------------------------------------------- /final-space-finished/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/package.json -------------------------------------------------------------------------------- /final-space-finished/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/public/favicon.ico -------------------------------------------------------------------------------- /final-space-finished/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/public/index.html -------------------------------------------------------------------------------- /final-space-finished/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/public/logo192.png -------------------------------------------------------------------------------- /final-space-finished/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/public/logo512.png -------------------------------------------------------------------------------- /final-space-finished/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/public/manifest.json -------------------------------------------------------------------------------- /final-space-finished/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/public/robots.txt -------------------------------------------------------------------------------- /final-space-finished/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/src/App.tsx -------------------------------------------------------------------------------- /final-space-finished/src/components/CharacterCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/src/components/CharacterCard.tsx -------------------------------------------------------------------------------- /final-space-finished/src/components/Slider/SliderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/src/components/Slider/SliderItem.tsx -------------------------------------------------------------------------------- /final-space-finished/src/components/Slider/SliderItemStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/src/components/Slider/SliderItemStyles.ts -------------------------------------------------------------------------------- /final-space-finished/src/components/Slider/SliderStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/src/components/Slider/SliderStyles.ts -------------------------------------------------------------------------------- /final-space-finished/src/components/Slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/src/components/Slider/index.tsx -------------------------------------------------------------------------------- /final-space-finished/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/src/index.tsx -------------------------------------------------------------------------------- /final-space-finished/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /final-space-finished/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-finished/tsconfig.json -------------------------------------------------------------------------------- /final-space-start-here/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/.gitignore -------------------------------------------------------------------------------- /final-space-start-here/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/README.md -------------------------------------------------------------------------------- /final-space-start-here/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/package-lock.json -------------------------------------------------------------------------------- /final-space-start-here/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/package.json -------------------------------------------------------------------------------- /final-space-start-here/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/public/favicon.ico -------------------------------------------------------------------------------- /final-space-start-here/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/public/index.html -------------------------------------------------------------------------------- /final-space-start-here/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/public/logo192.png -------------------------------------------------------------------------------- /final-space-start-here/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/public/logo512.png -------------------------------------------------------------------------------- /final-space-start-here/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/public/manifest.json -------------------------------------------------------------------------------- /final-space-start-here/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/public/robots.txt -------------------------------------------------------------------------------- /final-space-start-here/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/src/App.tsx -------------------------------------------------------------------------------- /final-space-start-here/src/components/Slider/SliderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/src/components/Slider/SliderItem.tsx -------------------------------------------------------------------------------- /final-space-start-here/src/components/Slider/SliderItemStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/src/components/Slider/SliderItemStyles.ts -------------------------------------------------------------------------------- /final-space-start-here/src/components/Slider/SliderStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/src/components/Slider/SliderStyles.ts -------------------------------------------------------------------------------- /final-space-start-here/src/components/Slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/src/components/Slider/index.tsx -------------------------------------------------------------------------------- /final-space-start-here/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/src/index.tsx -------------------------------------------------------------------------------- /final-space-start-here/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /final-space-start-here/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-smooth-slider/HEAD/final-space-start-here/tsconfig.json --------------------------------------------------------------------------------