website/components/ui/toaster.tsx

10 lines
140 B
TypeScript

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