Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit il y a 3 ans
..
cjs First Commit il y a 3 ans
umd First Commit il y a 3 ans
LICENSE First Commit il y a 3 ans
README.md First Commit il y a 3 ans
build-info.json First Commit il y a 3 ans
index.js First Commit il y a 3 ans
package.json First Commit il y a 3 ans
profiling.js First Commit il y a 3 ans
server.browser.js First Commit il y a 3 ans
server.js First Commit il y a 3 ans
server.node.js First Commit il y a 3 ans
test-utils.js First Commit il y a 3 ans
unstable-fizz.browser.js First Commit il y a 3 ans
unstable-fizz.js First Commit il y a 3 ans
unstable-fizz.node.js First Commit il y a 3 ans
unstable-native-dependencies.js First Commit il y a 3 ans

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