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