export const REGEX_EMAIL = /^\S+@\S+\.\S+$/;
I want to check email format like
email : [email protected] // passed
but
email: [email protected] // should not pass
email: [email protected]#$@! // shuuld not pass
//but from now they pass How i add the REGX email format