export interface IUser {
  firstName: string;
  lastName: string;
  email: string;
  id?: string | number;
}
