website/components/ui/toaster.tsx

11 lines
141 B
TypeScript
Raw Permalink Normal View History

2025-11-06 12:02:10 +00:00
"use client";
// Simple toaster component - can be enhanced later with toast notifications
export function Toaster() {
return null;
}
2025-11-07 21:37:43 +00:00