We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
비어있는 (내 프로필, 신청 내역, 내 가게)에 대한 내용을 렌더링 할 컴포넌트
description
string
buttonName
onClick
(e: MouseEvent<HTMLButtonElement>) => void
Table.Tr
showLastBottomBorder
boolean
border-bottom
export default function Example() { const clickHandler = () => { console.log("내 프로필 페이지로 이동"); }; return ( <EmptyStateCard description="내 프로필을 등록하고 원하는 가게에 지원해 보세요." buttonName="내 프로필 등록하기" onClick={clickHandler} /> ); }