├── LICENSE ├── README.md ├── react-slideshow-app ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── index.html │ └── manifest.json ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ │ └── Slides.js │ ├── index.css │ ├── index.js │ ├── registerServiceWorker.js │ └── setupTests.js └── yarn.lock └── react-sorting-articles ├── .gitignore ├── .jshintrc ├── README.md ├── junit.xml ├── package-lock.json ├── package.json ├── public ├── index.html └── manifest.json └── src ├── App.css ├── App.js ├── App.test.js ├── components └── Articles.js ├── index.css ├── index.js └── registerServiceWorker.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/README.md -------------------------------------------------------------------------------- /react-slideshow-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/.gitignore -------------------------------------------------------------------------------- /react-slideshow-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/README.md -------------------------------------------------------------------------------- /react-slideshow-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/package-lock.json -------------------------------------------------------------------------------- /react-slideshow-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/package.json -------------------------------------------------------------------------------- /react-slideshow-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/public/index.html -------------------------------------------------------------------------------- /react-slideshow-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/public/manifest.json -------------------------------------------------------------------------------- /react-slideshow-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/src/App.css -------------------------------------------------------------------------------- /react-slideshow-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/src/App.js -------------------------------------------------------------------------------- /react-slideshow-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/src/App.test.js -------------------------------------------------------------------------------- /react-slideshow-app/src/components/Slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/src/components/Slides.js -------------------------------------------------------------------------------- /react-slideshow-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/src/index.css -------------------------------------------------------------------------------- /react-slideshow-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/src/index.js -------------------------------------------------------------------------------- /react-slideshow-app/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/src/registerServiceWorker.js -------------------------------------------------------------------------------- /react-slideshow-app/src/setupTests.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react-slideshow-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-slideshow-app/yarn.lock -------------------------------------------------------------------------------- /react-sorting-articles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/.gitignore -------------------------------------------------------------------------------- /react-sorting-articles/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/.jshintrc -------------------------------------------------------------------------------- /react-sorting-articles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/README.md -------------------------------------------------------------------------------- /react-sorting-articles/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/junit.xml -------------------------------------------------------------------------------- /react-sorting-articles/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/package-lock.json -------------------------------------------------------------------------------- /react-sorting-articles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/package.json -------------------------------------------------------------------------------- /react-sorting-articles/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/public/index.html -------------------------------------------------------------------------------- /react-sorting-articles/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/public/manifest.json -------------------------------------------------------------------------------- /react-sorting-articles/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/src/App.css -------------------------------------------------------------------------------- /react-sorting-articles/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/src/App.js -------------------------------------------------------------------------------- /react-sorting-articles/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/src/App.test.js -------------------------------------------------------------------------------- /react-sorting-articles/src/components/Articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/src/components/Articles.js -------------------------------------------------------------------------------- /react-sorting-articles/src/index.css: -------------------------------------------------------------------------------- 1 | @import "../node_modules/h8k-design/dist/index.css"; 2 | -------------------------------------------------------------------------------- /react-sorting-articles/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/src/index.js -------------------------------------------------------------------------------- /react-sorting-articles/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrielpatrola/HackerRank-React-Basic/HEAD/react-sorting-articles/src/registerServiceWorker.js --------------------------------------------------------------------------------