├── .gitignore ├── README.md ├── chatter ├── .env ├── README.md ├── package.json ├── public │ ├── favicon.png │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.js │ ├── _index.scss │ ├── common │ │ ├── components │ │ │ └── UserProfile │ │ │ │ ├── UserProfile.js │ │ │ │ ├── _user-profile.scss │ │ │ │ └── index.js │ │ └── constants │ │ │ └── initialBottyMessage.js │ ├── components │ │ ├── ContactPanel │ │ │ ├── ContactPanel.js │ │ │ ├── _contact-panel.scss │ │ │ └── index.js │ │ ├── Messages │ │ │ ├── components │ │ │ │ ├── Footer.js │ │ │ │ ├── Header.js │ │ │ │ ├── Message.js │ │ │ │ ├── Messages.js │ │ │ │ └── TypingMessage.js │ │ │ ├── index.js │ │ │ └── styles │ │ │ │ └── _messages.scss │ │ └── UserList │ │ │ ├── UserList.js │ │ │ ├── _user-list.scss │ │ │ ├── constants │ │ │ └── users.js │ │ │ └── index.js │ ├── config.js │ ├── contexts │ │ └── LatestMessages │ │ │ ├── LatestMessages.js │ │ │ ├── constants │ │ │ └── initialMessages.js │ │ │ └── index.js │ ├── index.js │ ├── layouts │ │ └── CoreLayout │ │ │ ├── components │ │ │ ├── CoreLayout.js │ │ │ └── IconBackground.js │ │ │ ├── constants │ │ │ └── icons.js │ │ │ ├── index.js │ │ │ └── styles │ │ │ ├── _core-layout.scss │ │ │ └── _icon-background.scss │ └── styles │ │ ├── _fonts.scss │ │ └── _vars.scss └── yarn.lock ├── dark-mode ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── favicon.png │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── common │ │ └── containers │ │ │ └── App.js │ ├── index.js │ ├── routes │ │ ├── App │ │ │ ├── components │ │ │ │ └── App.js │ │ │ ├── index.js │ │ │ └── styles │ │ │ │ └── _app.scss │ │ └── index.js │ └── styles │ │ ├── _dark-mode.scss │ │ └── _main.scss └── yarn.lock ├── issue_template.md ├── new_challenge_template.md ├── pull_request_template.md ├── rocket-ship ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── favicon.png │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── index.js │ ├── routes │ │ ├── LaunchPad │ │ │ ├── components │ │ │ │ ├── LaunchPad.js │ │ │ │ └── Rocket │ │ │ │ │ ├── components │ │ │ │ │ ├── Rocket.js │ │ │ │ │ └── RocketCore.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles │ │ │ │ │ └── _rocket.scss │ │ │ ├── index.js │ │ │ └── styles │ │ │ │ └── _launchpad.scss │ │ └── index.js │ └── styles │ │ └── _main.scss └── yarn.lock └── spootify ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── assets │ └── images │ │ ├── avatar.svg │ │ └── hero.svg ├── common │ ├── components │ │ ├── Header │ │ │ ├── Header.js │ │ │ ├── _header.scss │ │ │ └── index.js │ │ ├── Player │ │ │ ├── Player.js │ │ │ ├── _player.scss │ │ │ └── index.js │ │ └── SideBar │ │ │ ├── SideBar.js │ │ │ ├── _sidebar.scss │ │ │ └── index.js │ └── layouts │ │ └── CoreLayout.js ├── config.js ├── index.js ├── routes │ ├── Discover │ │ ├── components │ │ │ ├── Discover.js │ │ │ └── DiscoverBlock │ │ │ │ ├── components │ │ │ │ ├── DiscoverBlock.js │ │ │ │ └── DiscoverItem.js │ │ │ │ ├── index.js │ │ │ │ └── styles │ │ │ │ ├── _discover-block.scss │ │ │ │ └── _discover-item.scss │ │ ├── index.js │ │ └── styles │ │ │ └── _discover.scss │ └── index.js └── styles │ ├── _main.scss │ └── _vars.scss └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/README.md -------------------------------------------------------------------------------- /chatter/.env: -------------------------------------------------------------------------------- 1 | SASS_PATH=src/styles 2 | -------------------------------------------------------------------------------- /chatter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/README.md -------------------------------------------------------------------------------- /chatter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/package.json -------------------------------------------------------------------------------- /chatter/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/public/favicon.png -------------------------------------------------------------------------------- /chatter/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/public/index.html -------------------------------------------------------------------------------- /chatter/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/public/logo192.png -------------------------------------------------------------------------------- /chatter/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/public/logo512.png -------------------------------------------------------------------------------- /chatter/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/public/manifest.json -------------------------------------------------------------------------------- /chatter/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/public/robots.txt -------------------------------------------------------------------------------- /chatter/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/App.js -------------------------------------------------------------------------------- /chatter/src/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/_index.scss -------------------------------------------------------------------------------- /chatter/src/common/components/UserProfile/UserProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/common/components/UserProfile/UserProfile.js -------------------------------------------------------------------------------- /chatter/src/common/components/UserProfile/_user-profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/common/components/UserProfile/_user-profile.scss -------------------------------------------------------------------------------- /chatter/src/common/components/UserProfile/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './UserProfile'; 2 | -------------------------------------------------------------------------------- /chatter/src/common/constants/initialBottyMessage.js: -------------------------------------------------------------------------------- 1 | export default 'Hi! My name\'s Botty.'; 2 | -------------------------------------------------------------------------------- /chatter/src/components/ContactPanel/ContactPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/components/ContactPanel/ContactPanel.js -------------------------------------------------------------------------------- /chatter/src/components/ContactPanel/_contact-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/components/ContactPanel/_contact-panel.scss -------------------------------------------------------------------------------- /chatter/src/components/ContactPanel/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ContactPanel'; 2 | -------------------------------------------------------------------------------- /chatter/src/components/Messages/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/components/Messages/components/Footer.js -------------------------------------------------------------------------------- /chatter/src/components/Messages/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/components/Messages/components/Header.js -------------------------------------------------------------------------------- /chatter/src/components/Messages/components/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/components/Messages/components/Message.js -------------------------------------------------------------------------------- /chatter/src/components/Messages/components/Messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/components/Messages/components/Messages.js -------------------------------------------------------------------------------- /chatter/src/components/Messages/components/TypingMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/components/Messages/components/TypingMessage.js -------------------------------------------------------------------------------- /chatter/src/components/Messages/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './components/Messages'; 2 | -------------------------------------------------------------------------------- /chatter/src/components/Messages/styles/_messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/components/Messages/styles/_messages.scss -------------------------------------------------------------------------------- /chatter/src/components/UserList/UserList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/components/UserList/UserList.js -------------------------------------------------------------------------------- /chatter/src/components/UserList/_user-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/components/UserList/_user-list.scss -------------------------------------------------------------------------------- /chatter/src/components/UserList/constants/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/components/UserList/constants/users.js -------------------------------------------------------------------------------- /chatter/src/components/UserList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './UserList'; 2 | -------------------------------------------------------------------------------- /chatter/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/config.js -------------------------------------------------------------------------------- /chatter/src/contexts/LatestMessages/LatestMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/contexts/LatestMessages/LatestMessages.js -------------------------------------------------------------------------------- /chatter/src/contexts/LatestMessages/constants/initialMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/contexts/LatestMessages/constants/initialMessages.js -------------------------------------------------------------------------------- /chatter/src/contexts/LatestMessages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/contexts/LatestMessages/index.js -------------------------------------------------------------------------------- /chatter/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/index.js -------------------------------------------------------------------------------- /chatter/src/layouts/CoreLayout/components/CoreLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/layouts/CoreLayout/components/CoreLayout.js -------------------------------------------------------------------------------- /chatter/src/layouts/CoreLayout/components/IconBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/layouts/CoreLayout/components/IconBackground.js -------------------------------------------------------------------------------- /chatter/src/layouts/CoreLayout/constants/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/layouts/CoreLayout/constants/icons.js -------------------------------------------------------------------------------- /chatter/src/layouts/CoreLayout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './components/CoreLayout'; 2 | -------------------------------------------------------------------------------- /chatter/src/layouts/CoreLayout/styles/_core-layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/layouts/CoreLayout/styles/_core-layout.scss -------------------------------------------------------------------------------- /chatter/src/layouts/CoreLayout/styles/_icon-background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/layouts/CoreLayout/styles/_icon-background.scss -------------------------------------------------------------------------------- /chatter/src/styles/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/styles/_fonts.scss -------------------------------------------------------------------------------- /chatter/src/styles/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/src/styles/_vars.scss -------------------------------------------------------------------------------- /chatter/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/chatter/yarn.lock -------------------------------------------------------------------------------- /dark-mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/README.md -------------------------------------------------------------------------------- /dark-mode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/package.json -------------------------------------------------------------------------------- /dark-mode/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/public/favicon.ico -------------------------------------------------------------------------------- /dark-mode/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/public/favicon.png -------------------------------------------------------------------------------- /dark-mode/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/public/index.html -------------------------------------------------------------------------------- /dark-mode/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/public/logo192.png -------------------------------------------------------------------------------- /dark-mode/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/public/logo512.png -------------------------------------------------------------------------------- /dark-mode/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/public/manifest.json -------------------------------------------------------------------------------- /dark-mode/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/public/robots.txt -------------------------------------------------------------------------------- /dark-mode/src/common/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/src/common/containers/App.js -------------------------------------------------------------------------------- /dark-mode/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/src/index.js -------------------------------------------------------------------------------- /dark-mode/src/routes/App/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/src/routes/App/components/App.js -------------------------------------------------------------------------------- /dark-mode/src/routes/App/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './components/App'; 2 | -------------------------------------------------------------------------------- /dark-mode/src/routes/App/styles/_app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/src/routes/App/styles/_app.scss -------------------------------------------------------------------------------- /dark-mode/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/src/routes/index.js -------------------------------------------------------------------------------- /dark-mode/src/styles/_dark-mode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/src/styles/_dark-mode.scss -------------------------------------------------------------------------------- /dark-mode/src/styles/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/src/styles/_main.scss -------------------------------------------------------------------------------- /dark-mode/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/dark-mode/yarn.lock -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/issue_template.md -------------------------------------------------------------------------------- /new_challenge_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/new_challenge_template.md -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /rocket-ship/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/README.md -------------------------------------------------------------------------------- /rocket-ship/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/package.json -------------------------------------------------------------------------------- /rocket-ship/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/public/favicon.ico -------------------------------------------------------------------------------- /rocket-ship/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/public/favicon.png -------------------------------------------------------------------------------- /rocket-ship/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/public/index.html -------------------------------------------------------------------------------- /rocket-ship/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/public/logo192.png -------------------------------------------------------------------------------- /rocket-ship/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/public/logo512.png -------------------------------------------------------------------------------- /rocket-ship/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/public/manifest.json -------------------------------------------------------------------------------- /rocket-ship/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/public/robots.txt -------------------------------------------------------------------------------- /rocket-ship/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/src/index.js -------------------------------------------------------------------------------- /rocket-ship/src/routes/LaunchPad/components/LaunchPad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/src/routes/LaunchPad/components/LaunchPad.js -------------------------------------------------------------------------------- /rocket-ship/src/routes/LaunchPad/components/Rocket/components/Rocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/src/routes/LaunchPad/components/Rocket/components/Rocket.js -------------------------------------------------------------------------------- /rocket-ship/src/routes/LaunchPad/components/Rocket/components/RocketCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/src/routes/LaunchPad/components/Rocket/components/RocketCore.js -------------------------------------------------------------------------------- /rocket-ship/src/routes/LaunchPad/components/Rocket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/src/routes/LaunchPad/components/Rocket/index.js -------------------------------------------------------------------------------- /rocket-ship/src/routes/LaunchPad/components/Rocket/styles/_rocket.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/src/routes/LaunchPad/components/Rocket/styles/_rocket.scss -------------------------------------------------------------------------------- /rocket-ship/src/routes/LaunchPad/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './components/LaunchPad'; 2 | -------------------------------------------------------------------------------- /rocket-ship/src/routes/LaunchPad/styles/_launchpad.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/src/routes/LaunchPad/styles/_launchpad.scss -------------------------------------------------------------------------------- /rocket-ship/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/src/routes/index.js -------------------------------------------------------------------------------- /rocket-ship/src/styles/_main.scss: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | html, 4 | #root, 5 | body { 6 | height: 100%; 7 | overflow: hidden; 8 | } 9 | -------------------------------------------------------------------------------- /rocket-ship/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/rocket-ship/yarn.lock -------------------------------------------------------------------------------- /spootify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/README.md -------------------------------------------------------------------------------- /spootify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/package.json -------------------------------------------------------------------------------- /spootify/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/public/favicon.ico -------------------------------------------------------------------------------- /spootify/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/public/index.html -------------------------------------------------------------------------------- /spootify/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/public/logo192.png -------------------------------------------------------------------------------- /spootify/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/public/logo512.png -------------------------------------------------------------------------------- /spootify/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/public/manifest.json -------------------------------------------------------------------------------- /spootify/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/public/robots.txt -------------------------------------------------------------------------------- /spootify/src/assets/images/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/assets/images/avatar.svg -------------------------------------------------------------------------------- /spootify/src/assets/images/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/assets/images/hero.svg -------------------------------------------------------------------------------- /spootify/src/common/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/common/components/Header/Header.js -------------------------------------------------------------------------------- /spootify/src/common/components/Header/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/common/components/Header/_header.scss -------------------------------------------------------------------------------- /spootify/src/common/components/Header/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Header'; 2 | -------------------------------------------------------------------------------- /spootify/src/common/components/Player/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/common/components/Player/Player.js -------------------------------------------------------------------------------- /spootify/src/common/components/Player/_player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/common/components/Player/_player.scss -------------------------------------------------------------------------------- /spootify/src/common/components/Player/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Player'; 2 | -------------------------------------------------------------------------------- /spootify/src/common/components/SideBar/SideBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/common/components/SideBar/SideBar.js -------------------------------------------------------------------------------- /spootify/src/common/components/SideBar/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/common/components/SideBar/_sidebar.scss -------------------------------------------------------------------------------- /spootify/src/common/components/SideBar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SideBar'; 2 | -------------------------------------------------------------------------------- /spootify/src/common/layouts/CoreLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/common/layouts/CoreLayout.js -------------------------------------------------------------------------------- /spootify/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/config.js -------------------------------------------------------------------------------- /spootify/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/index.js -------------------------------------------------------------------------------- /spootify/src/routes/Discover/components/Discover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/routes/Discover/components/Discover.js -------------------------------------------------------------------------------- /spootify/src/routes/Discover/components/DiscoverBlock/components/DiscoverBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/routes/Discover/components/DiscoverBlock/components/DiscoverBlock.js -------------------------------------------------------------------------------- /spootify/src/routes/Discover/components/DiscoverBlock/components/DiscoverItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/routes/Discover/components/DiscoverBlock/components/DiscoverItem.js -------------------------------------------------------------------------------- /spootify/src/routes/Discover/components/DiscoverBlock/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './components/DiscoverBlock'; 2 | -------------------------------------------------------------------------------- /spootify/src/routes/Discover/components/DiscoverBlock/styles/_discover-block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/routes/Discover/components/DiscoverBlock/styles/_discover-block.scss -------------------------------------------------------------------------------- /spootify/src/routes/Discover/components/DiscoverBlock/styles/_discover-item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/routes/Discover/components/DiscoverBlock/styles/_discover-item.scss -------------------------------------------------------------------------------- /spootify/src/routes/Discover/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './components/Discover'; 2 | -------------------------------------------------------------------------------- /spootify/src/routes/Discover/styles/_discover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/routes/Discover/styles/_discover.scss -------------------------------------------------------------------------------- /spootify/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/routes/index.js -------------------------------------------------------------------------------- /spootify/src/styles/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/styles/_main.scss -------------------------------------------------------------------------------- /spootify/src/styles/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/src/styles/_vars.scss -------------------------------------------------------------------------------- /spootify/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgurr/react-coding-challenges/HEAD/spootify/yarn.lock --------------------------------------------------------------------------------