Files
holacompi/app/toaster.tsx
T
Haitham Khalifa b538d84e17 Initial commit
2026-02-16 12:18:06 +01:00

19 lines
338 B
TypeScript

'use client';
import { Toaster } from 'react-hot-toast';
export default function ToasterProvider() {
return (
<Toaster
position="top-right"
toastOptions={{
style: {
background: '#1a1625',
color: '#fff',
border: '1px solid rgba(139,92,246,0.35)',
},
}}
/>
);
}