22
33import Button from '@/shared/components/button/Button' ;
44import TextButton from '@/shared/components/button/TextButton' ;
5- import ModalLayout from '@/shared/components/modalPop/ModalLayout ' ;
5+ import Input from '@/shared/components/InputBox/Input ' ;
66import { useState } from 'react' ;
77import { customToast } from '@/shared/components/toast/CustomToastUtils' ;
8+ import ModalLayout from '@/shared/components/modalPop/ModalLayout' ;
89import ConfirmPop from '@/shared/components/modalPop/ConfirmPop' ;
10+ import ChatInput from '@/shared/components/InputBox/ChatInput' ;
11+ import SelectBox from '@/shared/components/InputBox/SelectBox' ;
912
1013function Page ( ) {
1114 const [ isModalOpen , setModalOpen ] = useState ( false ) ;
@@ -22,20 +25,18 @@ function Page() {
2225
2326 { /* Input */ }
2427 < div className = "flex flex-col gap-2 space-y-2" >
25- < h3 className = "text-lg font-medium border-b pb-1" > Input</ h3 >
26- { /* 여기 컴포넌트 삽입 */ }
27- </ div >
28-
29- { /* checkbox */ }
30- < div className = "space-y-2" >
31- < h3 className = "text-lg font-medium border-b pb-1" > checkbox</ h3 >
32- { /* 여기 컴포넌트 삽입 */ }
28+ < h3 className = "text-xl font-medium border-b pb-1" > Input</ h3 >
29+ < Input placeholder = "내용을 입력해주세요." id = "test" />
30+ < Input placeholder = "내용을 입력해주세요." id = "test" variant = "search" />
31+ < Input placeholder = "칵테일을 검색해 보세요" id = "test" variant = "comment" />
32+ < Input placeholder = "내용을 입력해주세요." id = "test" size = "lg" />
33+ < ChatInput placeholder = "내용을 입력해주세요" id = "test" />
3334 </ div >
3435
3536 { /* select */ }
3637 < div className = "space-y-2" >
3738 < h3 className = "text-lg font-medium border-b pb-1" > select</ h3 >
38- { /* 여기 컴포넌트 삽입 */ }
39+ < SelectBox option = { [ '' , '논알콜' , '약한 도수' , '중간 도수' ] } title = "도수" />
3940 </ div >
4041 </ div >
4142
0 commit comments