React vs ReactDOM?

后端 未结 9 1041
野性不改
野性不改 2020-11-30 18:02

I\'m a bit new to react. I see we have to import two things to get started, React and ReactDOM, can anyone explain the difference. I\'m reading thr

9条回答
  •  生来不讨喜
    2020-11-30 18:25

    It looks like they've separated React into react and react-dom packages, so you don't have to use the DOM-related part for projects where you'd like to use it in non-DOM-specific cases, like in here https://github.com/Flipboard/react-canvas where they import

    var React = require('react');
    var ReactCanvas = require('react-canvas');
    

    as you can see. Without react-dom.

提交回复
热议问题