import React from 'react'; interface Props { id?: string | undefined; error?: string | null; } const InputError = ({ error, id = undefined }: Props) => { if (!error || error === '') return <>; return ( {error} ); }; export default InputError;