Types pour les accessoires de tableau
type PersonListProp = {
names: {
first: string;
last: string;
}[];
};
Omatsola Eyeoyibo
type PersonListProp = {
names: {
first: string;
last: string;
}[];
};