Typ dla rekwizytów obiektowych

type Person = {
  name: {
    first: string;
    last: string;
  };
};
Omatsola Eyeoyibo