import { Transition } from "@headlessui/react"; import type { ReactNode } from "react"; import { Fragment } from "react"; interface MenuTransitionProps { children: ReactNode; show?: boolean; } const MenuTransition = ({ children, show }: MenuTransitionProps) => { return ( {children} ); }; export default MenuTransition;