import { motion } from 'framer-motion' const AnimationLayout = ({ children, ...props }) => { const transition = { ease: 'easeIn', duration: 0.2 } return ( children && ( {children} ) ) } export default AnimationLayout