Files
moy-qr/components/ui/PageTransition.tsx
T

19 lines
458 B
TypeScript

'use client'
import { motion } from 'framer-motion'
import { ReactNode } from 'react'
export function PageTransition({ children, className }: { children: ReactNode; className?: string }) {
return (
<motion.div
initial={{ opacity: 0, y: 10 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0, y: -10 }}
transition={{ duration: 0.3, ease: 'easeOut' }}
className={className}
>
{children}
</motion.div>
)
}