Esiste un modo in React per fornire puntelli predefiniti a una matrice nidificata di elementi di una determinata forma?Come si forniscono puntelli predefiniti per la forma annidata in React?
Dato l'esempio di seguito, è possibile vedere il mio primo tentativo, tuttavia ciò non funziona come previsto.
static propTypes = {
heading: PT.string,
items: PT.arrayOf(PT.shape({
href: PT.string,
label: PT.string,
})).isRequired,
};
static defaultProps = {
heading: 'this works',
items: [{
href: '/',
label: ' - this does not - ',
}],
};
In questo esempio, mi sarei aspettato il seguente:
// Given these props
const passedInProps = {
items: [{ href: 'foo', href: 'bar' }]
};
// Would resolve to:
const props = {
heading: 'this works',
items: [
{ href: 'foo', label: ' - this does not - ' },
{ href: 'bar', label: ' - this does not - ' },
]
};