Is it OK to use React.render() multiple times in the DOM?

后端 未结 2 1714
臣服心动
臣服心动 2020-12-02 09:48

I want to use React to add components multiple times throughout the DOM. This fiddle shows what I\'m looking to do, and it doesn\'t throw any errors. Here\'s the code:

2条回答
  •  醉话见心
    2020-12-02 09:57

    Yes, it is perfectly fine to call React.render multiple times on the same page. Just as you've suggested, the React library itself is only loaded once, but each call to React.render will create a new component instance independent of any others. (In fact, such a situation is not uncommon on sites that are in the process of transitioning to React, where some portions of the page are generated using React.render and others are not.)

提交回复
热议问题