Maik 79c46dcb5d modul 3 tahun lalu
..
cjs 79c46dcb5d modul 3 tahun lalu
umd 79c46dcb5d modul 3 tahun lalu
LICENSE 79c46dcb5d modul 3 tahun lalu
README.md 79c46dcb5d modul 3 tahun lalu
build-info.json 79c46dcb5d modul 3 tahun lalu
index.js 79c46dcb5d modul 3 tahun lalu
package.json 79c46dcb5d modul 3 tahun lalu
profiling.js 79c46dcb5d modul 3 tahun lalu
server.browser.js 79c46dcb5d modul 3 tahun lalu
server.js 79c46dcb5d modul 3 tahun lalu
server.node.js 79c46dcb5d modul 3 tahun lalu
test-utils.js 79c46dcb5d modul 3 tahun lalu

README.md

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