-
Notifications
You must be signed in to change notification settings - Fork 0
공통 컴포넌트
silverain02 edited this page Jul 24, 2023
·
3 revisions
- 사용방법
<Button
type="CSS타입(positive/negative/선택x->default)"
text={"버튼 내부 텍스트"}
onClick={클릭 시 실행할 함수}
/>
- 사용예시
<div>
<Button text={"기본버튼"} onClick={() => alert("기본 버튼 클릭")} />
<Button
type="positive"
text={"긍정버튼"}
onClick={() => alert("긍정 버튼 클릭")}
/>
<Button
type="negative"
text={"부정버튼"}
onClick={() => alert("부정 버튼 클릭")}
/>
</div>