@elyahoureact/react-dom
TypeScript icon, indicating that this package has built-in type declarations

16.13.7 • Public • Published

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

Dependencies (3)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @elyahoureact/react-dom

    Homepage

    reactjs.org/

    Weekly Downloads

    0

    Version

    16.13.7

    License

    MIT

    Unpacked Size

    3.11 MB

    Total Files

    35

    Last publish

    Collaborators

    • elyahou