Toast Notification

어려움

토스트 알림 (성공, 에러, 정보, 경고)

#javascript#animation#micro

라이브 데모

코드

ToastNotification.tsx
const showToast = (message, type) => {
  setToasts([...toasts, { id: Date.now(), message, type }]);
  setTimeout(() => removeToast(id), 3000);
};