React: dynamic import jsx

后端 未结 3 762
鱼传尺愫
鱼传尺愫 2021-02-04 18:55

This question related to dynamically importing JSX files into React.

Basically we have one main component that dynamically renders other components based on a structure

3条回答
  •  眼角桃花
    2021-02-04 19:28

    To complement @gor181's answer, I can add that exports must be this way:

    export { default as CompA } from "./comp_a"; export { default as CompB } from "./comp_b";

    Hope this might be helpful.

提交回复
热议问题