Skip to content

Commit

Permalink
update sang 30.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ntnhan90 committed Oct 30, 2023
1 parent f6846ce commit 4efc136
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 487 deletions.
2 changes: 1 addition & 1 deletion components/BMI/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface BMIType{
}

const BMI = ({height, weight} : BMIType) => {
const BMIindex = weight/ (height * height) * 10000;
const BMIindex = (weight/ (height * height) * 10000).toFixed(2);
return (
<div className="ch-s-bmi-parent">
<div className="ch-s-bmi font-size24">Chỉ số BMI</div>
Expand Down
283 changes: 0 additions & 283 deletions pages/additional-sign-up-info.tsx

This file was deleted.

Loading

0 comments on commit 4efc136

Please sign in to comment.