jenis untuk alat peraga array

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