import { Transition } from '@headlessui/react'; import React, { PropsWithChildren } from 'react'; interface Props { on: boolean; className?: string; } export default function ActionMessage({ on, className, children, }: PropsWithChildren) { return (
{children}
); }