outaozhen bb52c63d7d 库提交 před 5 roky
..
cjs bb52c63d7d 库提交 před 5 roky
umd bb52c63d7d 库提交 před 5 roky
LICENSE bb52c63d7d 库提交 před 5 roky
README.md bb52c63d7d 库提交 před 5 roky
build-info.json bb52c63d7d 库提交 před 5 roky
index.js bb52c63d7d 库提交 před 5 roky
package.json bb52c63d7d 库提交 před 5 roky
profiling.js bb52c63d7d 库提交 před 5 roky
server.browser.js bb52c63d7d 库提交 před 5 roky
server.js bb52c63d7d 库提交 před 5 roky
server.node.js bb52c63d7d 库提交 před 5 roky
test-utils.js bb52c63d7d 库提交 před 5 roky
unstable-fizz.browser.js bb52c63d7d 库提交 před 5 roky
unstable-fizz.js bb52c63d7d 库提交 před 5 roky
unstable-fizz.node.js bb52c63d7d 库提交 před 5 roky
unstable-native-dependencies.js bb52c63d7d 库提交 před 5 roky

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