Toast Notification
어려움토스트 알림 (성공, 에러, 정보, 경고)
라이브 데모
코드
ToastNotification.tsx
const showToast = (message, type) => {
setToasts([...toasts, { id: Date.now(), message, type }]);
setTimeout(() => removeToast(id), 3000);
};토스트 알림 (성공, 에러, 정보, 경고)
const showToast = (message, type) => {
setToasts([...toasts, { id: Date.now(), message, type }]);
setTimeout(() => removeToast(id), 3000);
};