Skip to content

Commit 6c9d46a

Browse files
committed
feat: 공용 인풋 폼 사용 예시 작성
1 parent 602da85 commit 6c9d46a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/pages/InputFormTest.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ function TestInputForm() {
77
return (
88
<div>
99
<InputForm title="이름" placeholder="이름을 입력하세요" hint="hint text" onChange={onChange} />
10+
<InputForm
11+
title={'패스워드'}
12+
placeholder={'패스워드를 입력하세요'}
13+
hint={'hit text'}
14+
onChange={onChange}
15+
type={'password'}
16+
/>
1017
</div>
1118
);
1219
}

0 commit comments

Comments
 (0)