website/components/ui/toaster.tsx
2025-11-07 21:37:43 +00:00

11 lines
141 B
TypeScript

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