export function isEmail(input: string): boolean {
  return /\S+@\S+\.\S+/.test(input);
}
