export type ResponseProps = {
  id: number;
  user: {
    email: string;
    firstName: string;
    lastName: string;
    username: string;
  };
};