This package has been deprecated

Author message:

doesn't work with react dom 17

@onzag/react-dom

17.0.3-custom.1 • Public • Published

react-dom

This version of react dom has been hacked to have an async render function and a before SSR render function in order to be used to SSR async; this is used in the itemize project.

The hack does not work in development builds properly as it cannot render two pages at once, which a server may need to do so, a lock may solve the issue.

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');

function MyComponent() {
  return <div>Hello World</div>;
}

ReactDOM.render(<MyComponent />, node);

On the server

var React = require('react');
var ReactDOMServer = require('react-dom/server');

function MyComponent() {
  return <div>Hello World</div>;
}

ReactDOMServer.renderToString(<MyComponent />);

API

react-dom

  • findDOMNode
  • render
  • unmountComponentAtNode

react-dom/server

  • renderToString
  • renderToStaticMarkup

Readme

Keywords

Package Sidebar

Install

npm i @onzag/react-dom

Homepage

reactjs.org/

Weekly Downloads

0

Version

17.0.3-custom.1

License

MIT

Unpacked Size

3.57 MB

Total Files

25

Last publish

Collaborators

  • onzag