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 hace 5 años
..
cjs initial hace 5 años
umd initial hace 5 años
LICENSE initial hace 5 años
README.md initial hace 5 años
build-info.json initial hace 5 años
index.js initial hace 5 años
package.json initial hace 5 años
profiling.js initial hace 5 años
server.browser.js initial hace 5 años
server.js initial hace 5 años
server.node.js initial hace 5 años
test-utils.js initial hace 5 años
unstable-fizz.browser.js initial hace 5 años
unstable-fizz.js initial hace 5 años
unstable-fizz.node.js initial hace 5 años
unstable-flight-client.js initial hace 5 años
unstable-flight-server.browser.js initial hace 5 años
unstable-flight-server.js initial hace 5 años
unstable-flight-server.node.js initial hace 5 años
unstable-native-dependencies.js initial hace 5 años

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