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