0.0.20160112104505 • Published 8 years ago

react-dom-future v0.0.20160112104505

Weekly downloads
2
License
BSD-3-Clause
Repository
github
Last release
8 years ago

react-dom-future

This package serves as the entry point of the DOM-related rendering paths. It is intended to be paired with the isomorphic React, which will be shipped as react to npm.

Installation

npm install react react-dom-future

Usage

In the browser

var React = require('react');
var ReactDOM = require('react-dom-future');

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-future/server');

class MyComponent extends React.Component {
  render() {
    return <div>Hello World</div>;
  }
}

ReactDOMServer.renderToString(<MyComponent />);

API

react-dom-future

  • findDOMNode
  • render
  • unmountComponentAtNode

react-dom-future/server

  • renderToString
  • renderToStaticMarkup