gitextract_7xlaooi8/ ├── .gitignore ├── .prettierrc.js ├── .travis.yml ├── LICENSE ├── README.md ├── cypress/ │ ├── .eslintrc.json │ ├── integration/ │ │ └── BmiForm.spec.js │ ├── plugins/ │ │ └── index.js │ └── support/ │ ├── commands.js │ └── index.js ├── cypress.json ├── jsconfig.json ├── package.json ├── public/ │ ├── index.html │ └── robots.txt └── src/ ├── components/ │ ├── App/ │ │ ├── App.css │ │ ├── App.jsx │ │ └── App.test.js │ ├── Bar/ │ │ ├── Bar.jsx │ │ └── Bar.test.js │ ├── BmiForm/ │ │ ├── BmiForm.jsx │ │ └── BmiForm.test.js │ └── Info/ │ ├── Info.jsx │ └── Info.test.js ├── helpers/ │ └── localStorage.js ├── index.css ├── index.js └── setupTests.js