토스트 알림을 전역적으로 관리하는 Store입니다.
const { toasts, actions } = useToastStore();// 토스트 추가actions.addToast({ title: '성공!', description: '작업이 완료되었습니다.', variant: 'success', duration: 3000}); Copy
const { toasts, actions } = useToastStore();// 토스트 추가actions.addToast({ title: '성공!', description: '작업이 완료되었습니다.', variant: 'success', duration: 3000});
토스트 알림을 전역적으로 관리하는 Store입니다.
Example