我react-icons
在“卡片组件”中有一个通过道具的列表。在我的 Card 组件的渲染方法中,我有这样的东西:
render() {
...
{
this.props.icons.map(icon => {
return (
<div className="icon-square">
/* What should I do here so I render the "icon" variable" */
</div>
)
})
}
}
注意:该列表由 react-icons 组成,它们本身就是 React 组件。
我尝试了很多东西,但我不太清楚如何渲染图标。如果有人可以帮助我,那就太棒了。谢谢