❓ 오류 발생 상황과 이유 const { color, reverseColor, size, comment, icon } = props const [isClicked, setIsClicked] = useState(false); const onReverseColor = () => { setIsClicked(true); setTimeout(() => { setIsClicked(false); }, 250); }; const onOpenAlert = () => { if (comment === "Large Primary Button") { window.alert("버튼을 만들어보세요"); } if (comment === "Large Negative Button") { window.prompt("어렵나요?"); } }..