Adding MELD Score and its docs

This commit is contained in:
2026-03-31 16:50:38 +05:30
parent 23c3223caf
commit 7b65312605
5 changed files with 113 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
import { cockcroftGault } from "./miscellaneous/cockcroft-gault-eq";
import { IMPACT } from "./transplantation/IMPACT";
import { Section } from "./types";
import { MELD } from "./miscellaneous/MELD";
export const CalculatorRegistry : Record<string, Section> = {
transplantation:{
id:"transplantation",
@@ -18,7 +18,8 @@ export const CalculatorRegistry : Record<string, Section> = {
textColor:"#ccc",
svg:"",
calculators:[
cockcroftGault
cockcroftGault,
MELD
]
}
}