-
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.
Feat: PersonalInformation이 state에 저장되도록 함 #33
- Loading branch information
Showing
5 changed files
with
55 additions
and
6 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
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 |
---|---|---|
|
@@ -124,18 +124,21 @@ export const meeting = [ | |
] | ||
|
||
export const personalInformation = [ | ||
{ title: '이름', placeholder: '지원자의 이름을 입력해주세요.' }, | ||
{ name: 'name', title: '이름', placeholder: '지원자의 이름을 입력해주세요.' }, | ||
{ | ||
name: 'studentNumber', | ||
title: '학번', | ||
placeholder: '서강대학교 학번을 입력해주세요 .ex) 20220001' | ||
}, | ||
{ | ||
name: 'email', | ||
title: '이메일', | ||
placeholder: '이메일 주소를 입력해주세요. ex) [email protected]' | ||
} | ||
] | ||
|
||
export const personalPhoneNumber = { | ||
name: 'phone', | ||
title: '전화번호', | ||
placeholder: '연락가능한 전화번호를 입력해주세요. ex) 010-1234-5678' | ||
} |