Skip to content

Commit a57248b

Browse files
committed
feat: medicine-option 상수 정의
1 parent eab5b5f commit a57248b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
NAME: { label: '약품명', value: 'name' },
10+
INDICATION: { label: '적응증', value: 'indication' },
11+
} as const;
12+
13+
export const KM_MEDICINE_OPTION_VALUES = Object.values(KM_MEDICINE_OPTION);

0 commit comments

Comments
 (0)