React中的新功能,尋找一種構建嵌套組件的好方法,給定一個嵌套的props
對象。在React中構建一個嵌套組件
採取以下基本props
例如:
const props = [{
label: 'Foods',
children: [
{ label: 'Chicken', children: [] },
{ label: 'Pasta', children: [] }
]
}];
我想用它來構建一個嵌套的菜單:
<Item>
<Label>Foods</Label>
<Item><Label>Chicken</Label></Item>
<Item><Label>Pasta</Label></Item>
</Item>
雖然這是一個簡單的例子,嵌套會去更加深入。
我已經搜索過這個,我發現的都是預構建的組件。我不是在尋找魔法,我試圖在使用其他組件之前瞭解事情的工作原理。
什麼是生成React組件以有效呈現此內容的最佳方式?
這工作完美 - 謝謝! – dthree