├── README.md ├── day1-form-validation ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ ├── Forms.js │ ├── constants.js │ ├── form.css │ └── validate.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── day2-drag-and-drop ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Column.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── day3-progressive-web-app ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── cropped.png │ ├── index.html │ ├── manifest.json │ ├── offline.html │ ├── robots.txt │ └── serviceWorker.js └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Column.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── day4-browser-encryption ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ ├── setupTests.js │ └── utils │ ├── encryption.js │ └── localstorage.js ├── day5-microfrontend ├── README.md ├── form │ ├── README.md │ ├── config-overrides.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── Form.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ ├── setupProxy.js │ │ ├── setupTests.js │ │ └── utils.js │ └── yarn.lock ├── host1 │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── MicroFrontend.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js │ └── yarn.lock └── host2 │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── MicroFrontend.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js │ └── yarn.lock ├── day6-price-drop-alert ├── README.md ├── package-lock.json ├── package.json └── server.js └── day7-folder-file-structure-like-vs-code ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── FileTree.js ├── Folder.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js ├── setupTests.js └── utils.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/README.md -------------------------------------------------------------------------------- /day1-form-validation/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /day1-form-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/README.md -------------------------------------------------------------------------------- /day1-form-validation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/package-lock.json -------------------------------------------------------------------------------- /day1-form-validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/package.json -------------------------------------------------------------------------------- /day1-form-validation/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/public/favicon.ico -------------------------------------------------------------------------------- /day1-form-validation/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/public/index.html -------------------------------------------------------------------------------- /day1-form-validation/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/public/logo192.png -------------------------------------------------------------------------------- /day1-form-validation/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/public/logo512.png -------------------------------------------------------------------------------- /day1-form-validation/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/public/manifest.json -------------------------------------------------------------------------------- /day1-form-validation/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/public/robots.txt -------------------------------------------------------------------------------- /day1-form-validation/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/src/App.css -------------------------------------------------------------------------------- /day1-form-validation/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/src/App.js -------------------------------------------------------------------------------- /day1-form-validation/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/src/App.test.js -------------------------------------------------------------------------------- /day1-form-validation/src/components/Forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/src/components/Forms.js -------------------------------------------------------------------------------- /day1-form-validation/src/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/src/components/constants.js -------------------------------------------------------------------------------- /day1-form-validation/src/components/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/src/components/form.css -------------------------------------------------------------------------------- /day1-form-validation/src/components/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/src/components/validate.js -------------------------------------------------------------------------------- /day1-form-validation/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /day1-form-validation/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/src/index.js -------------------------------------------------------------------------------- /day1-form-validation/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/src/logo.svg -------------------------------------------------------------------------------- /day1-form-validation/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/src/reportWebVitals.js -------------------------------------------------------------------------------- /day1-form-validation/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day1-form-validation/src/setupTests.js -------------------------------------------------------------------------------- /day2-drag-and-drop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/README.md -------------------------------------------------------------------------------- /day2-drag-and-drop/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/package-lock.json -------------------------------------------------------------------------------- /day2-drag-and-drop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/package.json -------------------------------------------------------------------------------- /day2-drag-and-drop/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/public/favicon.ico -------------------------------------------------------------------------------- /day2-drag-and-drop/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/public/index.html -------------------------------------------------------------------------------- /day2-drag-and-drop/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/public/logo192.png -------------------------------------------------------------------------------- /day2-drag-and-drop/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/public/logo512.png -------------------------------------------------------------------------------- /day2-drag-and-drop/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/public/manifest.json -------------------------------------------------------------------------------- /day2-drag-and-drop/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/public/robots.txt -------------------------------------------------------------------------------- /day2-drag-and-drop/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/src/App.css -------------------------------------------------------------------------------- /day2-drag-and-drop/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/src/App.js -------------------------------------------------------------------------------- /day2-drag-and-drop/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/src/App.test.js -------------------------------------------------------------------------------- /day2-drag-and-drop/src/Column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/src/Column.js -------------------------------------------------------------------------------- /day2-drag-and-drop/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/src/index.css -------------------------------------------------------------------------------- /day2-drag-and-drop/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/src/index.js -------------------------------------------------------------------------------- /day2-drag-and-drop/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/src/logo.svg -------------------------------------------------------------------------------- /day2-drag-and-drop/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/src/reportWebVitals.js -------------------------------------------------------------------------------- /day2-drag-and-drop/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day2-drag-and-drop/src/setupTests.js -------------------------------------------------------------------------------- /day3-progressive-web-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/README.md -------------------------------------------------------------------------------- /day3-progressive-web-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/package-lock.json -------------------------------------------------------------------------------- /day3-progressive-web-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/package.json -------------------------------------------------------------------------------- /day3-progressive-web-app/public/cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/public/cropped.png -------------------------------------------------------------------------------- /day3-progressive-web-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/public/index.html -------------------------------------------------------------------------------- /day3-progressive-web-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/public/manifest.json -------------------------------------------------------------------------------- /day3-progressive-web-app/public/offline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/public/offline.html -------------------------------------------------------------------------------- /day3-progressive-web-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/public/robots.txt -------------------------------------------------------------------------------- /day3-progressive-web-app/public/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/public/serviceWorker.js -------------------------------------------------------------------------------- /day3-progressive-web-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/src/App.css -------------------------------------------------------------------------------- /day3-progressive-web-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/src/App.js -------------------------------------------------------------------------------- /day3-progressive-web-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/src/App.test.js -------------------------------------------------------------------------------- /day3-progressive-web-app/src/Column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/src/Column.js -------------------------------------------------------------------------------- /day3-progressive-web-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/src/index.css -------------------------------------------------------------------------------- /day3-progressive-web-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/src/index.js -------------------------------------------------------------------------------- /day3-progressive-web-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/src/logo.svg -------------------------------------------------------------------------------- /day3-progressive-web-app/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/src/reportWebVitals.js -------------------------------------------------------------------------------- /day3-progressive-web-app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day3-progressive-web-app/src/setupTests.js -------------------------------------------------------------------------------- /day4-browser-encryption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/README.md -------------------------------------------------------------------------------- /day4-browser-encryption/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/package-lock.json -------------------------------------------------------------------------------- /day4-browser-encryption/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/package.json -------------------------------------------------------------------------------- /day4-browser-encryption/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/public/favicon.ico -------------------------------------------------------------------------------- /day4-browser-encryption/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/public/index.html -------------------------------------------------------------------------------- /day4-browser-encryption/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/public/logo192.png -------------------------------------------------------------------------------- /day4-browser-encryption/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/public/logo512.png -------------------------------------------------------------------------------- /day4-browser-encryption/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/public/manifest.json -------------------------------------------------------------------------------- /day4-browser-encryption/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/public/robots.txt -------------------------------------------------------------------------------- /day4-browser-encryption/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/src/App.css -------------------------------------------------------------------------------- /day4-browser-encryption/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/src/App.js -------------------------------------------------------------------------------- /day4-browser-encryption/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/src/App.test.js -------------------------------------------------------------------------------- /day4-browser-encryption/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/src/index.css -------------------------------------------------------------------------------- /day4-browser-encryption/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/src/index.js -------------------------------------------------------------------------------- /day4-browser-encryption/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/src/logo.svg -------------------------------------------------------------------------------- /day4-browser-encryption/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/src/reportWebVitals.js -------------------------------------------------------------------------------- /day4-browser-encryption/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/src/setupTests.js -------------------------------------------------------------------------------- /day4-browser-encryption/src/utils/encryption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/src/utils/encryption.js -------------------------------------------------------------------------------- /day4-browser-encryption/src/utils/localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day4-browser-encryption/src/utils/localstorage.js -------------------------------------------------------------------------------- /day5-microfrontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/README.md -------------------------------------------------------------------------------- /day5-microfrontend/form/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /day5-microfrontend/form/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/config-overrides.js -------------------------------------------------------------------------------- /day5-microfrontend/form/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/package-lock.json -------------------------------------------------------------------------------- /day5-microfrontend/form/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/package.json -------------------------------------------------------------------------------- /day5-microfrontend/form/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/public/favicon.ico -------------------------------------------------------------------------------- /day5-microfrontend/form/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/public/index.html -------------------------------------------------------------------------------- /day5-microfrontend/form/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/public/logo192.png -------------------------------------------------------------------------------- /day5-microfrontend/form/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/public/logo512.png -------------------------------------------------------------------------------- /day5-microfrontend/form/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/public/manifest.json -------------------------------------------------------------------------------- /day5-microfrontend/form/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/public/robots.txt -------------------------------------------------------------------------------- /day5-microfrontend/form/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /day5-microfrontend/form/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/src/App.js -------------------------------------------------------------------------------- /day5-microfrontend/form/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/src/App.test.js -------------------------------------------------------------------------------- /day5-microfrontend/form/src/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/src/Form.js -------------------------------------------------------------------------------- /day5-microfrontend/form/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/src/index.css -------------------------------------------------------------------------------- /day5-microfrontend/form/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/src/index.js -------------------------------------------------------------------------------- /day5-microfrontend/form/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/src/logo.svg -------------------------------------------------------------------------------- /day5-microfrontend/form/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/src/reportWebVitals.js -------------------------------------------------------------------------------- /day5-microfrontend/form/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/src/setupProxy.js -------------------------------------------------------------------------------- /day5-microfrontend/form/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/src/setupTests.js -------------------------------------------------------------------------------- /day5-microfrontend/form/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/src/utils.js -------------------------------------------------------------------------------- /day5-microfrontend/form/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/form/yarn.lock -------------------------------------------------------------------------------- /day5-microfrontend/host1/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /day5-microfrontend/host1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/package-lock.json -------------------------------------------------------------------------------- /day5-microfrontend/host1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/package.json -------------------------------------------------------------------------------- /day5-microfrontend/host1/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/public/favicon.ico -------------------------------------------------------------------------------- /day5-microfrontend/host1/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/public/index.html -------------------------------------------------------------------------------- /day5-microfrontend/host1/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/public/logo192.png -------------------------------------------------------------------------------- /day5-microfrontend/host1/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/public/logo512.png -------------------------------------------------------------------------------- /day5-microfrontend/host1/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/public/manifest.json -------------------------------------------------------------------------------- /day5-microfrontend/host1/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/public/robots.txt -------------------------------------------------------------------------------- /day5-microfrontend/host1/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/src/App.css -------------------------------------------------------------------------------- /day5-microfrontend/host1/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/src/App.js -------------------------------------------------------------------------------- /day5-microfrontend/host1/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/src/App.test.js -------------------------------------------------------------------------------- /day5-microfrontend/host1/src/MicroFrontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/src/MicroFrontend.js -------------------------------------------------------------------------------- /day5-microfrontend/host1/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/src/index.css -------------------------------------------------------------------------------- /day5-microfrontend/host1/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/src/index.js -------------------------------------------------------------------------------- /day5-microfrontend/host1/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/src/logo.svg -------------------------------------------------------------------------------- /day5-microfrontend/host1/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/src/reportWebVitals.js -------------------------------------------------------------------------------- /day5-microfrontend/host1/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/src/setupTests.js -------------------------------------------------------------------------------- /day5-microfrontend/host1/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host1/yarn.lock -------------------------------------------------------------------------------- /day5-microfrontend/host2/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /day5-microfrontend/host2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/package-lock.json -------------------------------------------------------------------------------- /day5-microfrontend/host2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/package.json -------------------------------------------------------------------------------- /day5-microfrontend/host2/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/public/favicon.ico -------------------------------------------------------------------------------- /day5-microfrontend/host2/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/public/index.html -------------------------------------------------------------------------------- /day5-microfrontend/host2/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/public/logo192.png -------------------------------------------------------------------------------- /day5-microfrontend/host2/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/public/logo512.png -------------------------------------------------------------------------------- /day5-microfrontend/host2/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/public/manifest.json -------------------------------------------------------------------------------- /day5-microfrontend/host2/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/public/robots.txt -------------------------------------------------------------------------------- /day5-microfrontend/host2/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/src/App.css -------------------------------------------------------------------------------- /day5-microfrontend/host2/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/src/App.js -------------------------------------------------------------------------------- /day5-microfrontend/host2/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/src/App.test.js -------------------------------------------------------------------------------- /day5-microfrontend/host2/src/MicroFrontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/src/MicroFrontend.js -------------------------------------------------------------------------------- /day5-microfrontend/host2/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/src/index.css -------------------------------------------------------------------------------- /day5-microfrontend/host2/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/src/index.js -------------------------------------------------------------------------------- /day5-microfrontend/host2/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/src/logo.svg -------------------------------------------------------------------------------- /day5-microfrontend/host2/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/src/reportWebVitals.js -------------------------------------------------------------------------------- /day5-microfrontend/host2/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/src/setupTests.js -------------------------------------------------------------------------------- /day5-microfrontend/host2/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day5-microfrontend/host2/yarn.lock -------------------------------------------------------------------------------- /day6-price-drop-alert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day6-price-drop-alert/README.md -------------------------------------------------------------------------------- /day6-price-drop-alert/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day6-price-drop-alert/package-lock.json -------------------------------------------------------------------------------- /day6-price-drop-alert/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day6-price-drop-alert/package.json -------------------------------------------------------------------------------- /day6-price-drop-alert/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day6-price-drop-alert/server.js -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/README.md -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/package-lock.json -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/package.json -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/public/favicon.ico -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/public/index.html -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/public/logo192.png -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/public/logo512.png -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/public/manifest.json -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/public/robots.txt -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/src/App.css -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/src/App.js -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/src/App.test.js -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/src/FileTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/src/FileTree.js -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/src/Folder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/src/Folder.js -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/src/index.css -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/src/index.js -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/src/logo.svg -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/src/reportWebVitals.js -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/src/setupTests.js -------------------------------------------------------------------------------- /day7-folder-file-structure-like-vs-code/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithayaann/Machine-Round-Challenge/HEAD/day7-folder-file-structure-like-vs-code/src/utils.js --------------------------------------------------------------------------------