EmailAddressPropsinterface
{
name?: Nullish<string>;
email: Nullish<string>;
}| Property | Type | |
|---|---|---|
.name | Nullish<string> | Nullish is the value or null or undefined. |
.email | Nullish<string> | Nullish is the value or null or undefined. required |
Props for EmailAddress — an optional name and a nullable email string.