import { Transition } from '@headlessui/react' import { Icons } from 'components' export default function DisplayError(props) { //? Props const { errors } = props //? Render(s) return (
{errors && } {errors?.message}
) }