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