website/components/ui/toaster.tsx

9 lines
139 B
TypeScript
Raw 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;
}