Skip to content

Commit

Permalink
feat: rebase 마무리 (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lavegaa committed Dec 3, 2020
1 parent c59181b commit b93375e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,19 +82,19 @@ const QuestionListSaveModal = () => {
<InputText>
질문 리스트 제목
</InputText>
<InputBar placeholder="제목을 입력해주세요." value={title} onchange={(e) => handleInputChange(e, setTitle)} />
<InputBar placeholder="제목을 입력해주세요." value={title} onChange={(e) => handleInputChange(e, setTitle)} />
</InputWrapper>
<InputWrapper>
<InputText>
기업 이름
</InputText>
<InputBar placeholder="기업명을 입력해주세요." value={enterprise} onchange={(e) => handleInputChange(e, setEnterprise)} />
<InputBar placeholder="기업명을 입력해주세요." value={enterprise} onChange={(e) => handleInputChange(e, setEnterprise)} />
</InputWrapper>
<InputWrapper>
<InputText>
직무 이름
</InputText>
<InputBar placeholder="직무명을 입력해주세요." value={job} onchange={(e) => handleInputChange(e, setJob)} />
<InputBar placeholder="직무명을 입력해주세요." value={job} onChange={(e) => handleInputChange(e, setJob)} />
</InputWrapper>
<ButtonWrapper onClick={handleListMake}>
<Button text="저장" theme="blue" />
Expand Down

0 comments on commit b93375e

Please sign in to comment.