Types pour les accessoires de tableau

type PersonListProp = {
  names: {
    first: string;
    last: string;
  }[];
};
Omatsola Eyeoyibo