├── .eslintrc.json ├── .gitignore ├── README.md ├── babel.config.js ├── codegrade_mvp.test.js ├── design-files └── desktop-example.png ├── jest.config.js ├── mocks ├── api.js ├── handlers.js ├── img │ ├── accent.png │ ├── cta.png │ └── logo.png ├── jest.globals.js └── server.js ├── package.json ├── src ├── index.html ├── index.js ├── original.html └── styles.css └── webpack.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/babel.config.js -------------------------------------------------------------------------------- /codegrade_mvp.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/codegrade_mvp.test.js -------------------------------------------------------------------------------- /design-files/desktop-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/design-files/desktop-example.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/jest.config.js -------------------------------------------------------------------------------- /mocks/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/mocks/api.js -------------------------------------------------------------------------------- /mocks/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/mocks/handlers.js -------------------------------------------------------------------------------- /mocks/img/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/mocks/img/accent.png -------------------------------------------------------------------------------- /mocks/img/cta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/mocks/img/cta.png -------------------------------------------------------------------------------- /mocks/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/mocks/img/logo.png -------------------------------------------------------------------------------- /mocks/jest.globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/mocks/jest.globals.js -------------------------------------------------------------------------------- /mocks/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/mocks/server.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/src/index.js -------------------------------------------------------------------------------- /src/original.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/src/original.html -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/src/styles.css -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/DOM-I/HEAD/webpack.config.js --------------------------------------------------------------------------------