Files
flyer-crawler.projectium.com/src/lib/toast.ts
2025-12-23 17:57:32 -08:00

9 lines
323 B
TypeScript

// src/lib/toast.ts
import toast from 'react-hot-toast';
// Re-export types and the default toast object.
// This intermediate file allows us to mock 'src/lib/toast' reliably in tests
// without wrestling with the internal structure of the 'react-hot-toast' package.
export * from 'react-hot-toast';
export default toast;