Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
root d8c1b4a1be initial 5 years ago
..
cjs initial 5 years ago
umd initial 5 years ago
LICENSE initial 5 years ago
README.md initial 5 years ago
build-info.json initial 5 years ago
index.js initial 5 years ago
package.json initial 5 years ago
profiling.js initial 5 years ago
server.browser.js initial 5 years ago
server.js initial 5 years ago
server.node.js initial 5 years ago
test-utils.js initial 5 years ago
unstable-fizz.browser.js initial 5 years ago
unstable-fizz.js initial 5 years ago
unstable-fizz.node.js initial 5 years ago
unstable-flight-client.js initial 5 years ago
unstable-flight-server.browser.js initial 5 years ago
unstable-flight-server.js initial 5 years ago
unstable-flight-server.node.js initial 5 years ago
unstable-native-dependencies.js initial 5 years ago

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