-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
61 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 42 additions & 32 deletions
74
src/components/questionnaire/SelectCategoryChipList/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
export enum CategoryEnum { | ||
COMMUNICATION = '커뮤니케이션', | ||
SKILL = '기술', | ||
COLLABORATION = '협업', | ||
LEADERSHIP = '리더십', | ||
DOCUMENTATION = '문서화', | ||
TIME_MANAGEMENT = '시간관리', | ||
PROBLEM_SOLVING = '문제해결', | ||
DILIGENCE = '성실성', | ||
IDEATION = '아이데이션', | ||
CONSIDERATION = '배려심', | ||
FOLLOWERSHIP = '팔로워십', | ||
} | ||
|
||
export type EngCategoryType = keyof typeof CategoryEnum; | ||
export type KorCategoryType = `${CategoryEnum}`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters