website/components/ui/toaster.tsx
2025-11-06 12:02:10 +00:00

9 lines
139 B
TypeScript

"use client";
// Simple toaster component - can be enhanced later with toast notifications
export function Toaster() {
return null;
}