├── .gitignore ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.jsx ├── components │ ├── Button.css │ ├── Button.jsx │ ├── ImcCalc.css │ ├── ImcCalc.jsx │ ├── ImcTable.css │ └── ImcTable.jsx ├── data │ └── data.js ├── index.css └── main.jsx └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/.gitignore -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/Button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/src/components/Button.css -------------------------------------------------------------------------------- /src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/src/components/Button.jsx -------------------------------------------------------------------------------- /src/components/ImcCalc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/src/components/ImcCalc.css -------------------------------------------------------------------------------- /src/components/ImcCalc.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/src/components/ImcCalc.jsx -------------------------------------------------------------------------------- /src/components/ImcTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/src/components/ImcTable.css -------------------------------------------------------------------------------- /src/components/ImcTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/src/components/ImcTable.jsx -------------------------------------------------------------------------------- /src/data/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/src/data/data.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/src/main.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/imc_calc_react/HEAD/vite.config.js --------------------------------------------------------------------------------