├── .gitignore ├── index.js ├── package.json └── public └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-5-class-2/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-5-class-2/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-5-class-2/HEAD/public/index.html --------------------------------------------------------------------------------