import React from "react"; import { motion } from "framer-motion"; const Hover = ({ children }) => { return ( {children} ); }; export default Hover;