spaceout/site/frontend/node_modules/react-dom
2020-12-12 14:43:35 -05:00
..
cjs init organization 2020-12-12 14:43:35 -05:00
umd init organization 2020-12-12 14:43:35 -05:00
build-info.json init organization 2020-12-12 14:43:35 -05:00
index.js init organization 2020-12-12 14:43:35 -05:00
LICENSE init organization 2020-12-12 14:43:35 -05:00
package.json init organization 2020-12-12 14:43:35 -05:00
profiling.js init organization 2020-12-12 14:43:35 -05:00
README.md init organization 2020-12-12 14:43:35 -05:00
server.browser.js init organization 2020-12-12 14:43:35 -05:00
server.js init organization 2020-12-12 14:43:35 -05:00
server.node.js init organization 2020-12-12 14:43:35 -05:00
test-utils.js init organization 2020-12-12 14:43:35 -05:00

react-dom

This package serves as the entry point to the DOM and server renderers for React. It is intended to be paired with the generic React package, which is shipped as react to npm.

Installation

npm install react react-dom

Usage

In the browser

var React = require('react');
var ReactDOM = require('react-dom');

class MyComponent extends React.Component {
  render() {
    return <div>Hello World</div>;
  }
}

ReactDOM.render(<MyComponent />, node);

On the server

var React = require('react');
var ReactDOMServer = require('react-dom/server');

class MyComponent extends React.Component {
  render() {
    return <div>Hello World</div>;
  }
}

ReactDOMServer.renderToString(<MyComponent />);

API

react-dom

  • findDOMNode
  • render
  • unmountComponentAtNode

react-dom/server

  • renderToString
  • renderToStaticMarkup