import { Transition } from "@headlessui/react"; import * as React from "react"; export const TransitionPopInOut: React.VoidFunctionComponent<{ children: React.ReactNode; show?: boolean; }> = ({ children, show }) => { return ( {children} ); };