We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eab5b5f commit a57248bCopy full SHA for a57248b
frontend/src/constants/medicine-option.ts
@@ -0,0 +1,13 @@
1
+export const M_MEDICINE_OPTION = {
2
+ NAME: { label: '약품명', value: 'name' },
3
+ INGREDIENT: { label: '성분명', value: 'ingredient' },
4
+} as const;
5
+
6
+export const M_MEDICINE_OPTION_VALUES = Object.values(M_MEDICINE_OPTION);
7
8
+export const KM_MEDICINE_OPTION = {
9
10
+ INDICATION: { label: '적응증', value: 'indication' },
11
12
13
+export const KM_MEDICINE_OPTION_VALUES = Object.values(KM_MEDICINE_OPTION);
0 commit comments