11 lines
275 B
JavaScript
11 lines
275 B
JavaScript
const constants = {
|
|
categoryshortname: {
|
|
"SICKLECELLTRAIT": "Trait",
|
|
"SICKLECELLDISEASE": "Disease",
|
|
"NEGATIVEBORDERLINE": "-Borderline",
|
|
"POSITIVEBORDERLINE": "+Borderline",
|
|
"NORMAL": "Normal",
|
|
},
|
|
};
|
|
|
|
export default constants; |