标签: javascript reactjs ecmascript-6
假设我在ES6 / React应用程序的src/components文件夹中有一个组件列表。在父组件中,我有一个JSON对象,如:
src/components
{ "name": "mycomponent", "props": { "label": "hello" "message": "world" } }
有没有办法只根据字符串表示导入名为mycomponent的组件?然后根据字符串使用该组件?
mycomponent