import { AnimatePresence } from 'motion/react'; import styles from './notification.module.css'; interface NotificationProps { show: boolean; message: string; type: 'success' | 'error'; onClose: () => void; } export function Notification({ show, message, type, onClose }: NotificationProps) { return ( {show && (
{message}
)}
); }