StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
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.
 
 
 
 
StackGenVis/frontend/node_modules/react-dom
Angelos Chatzimparmpas e069030893 fix the frontend 4 years ago
..
cjs fix the frontend 4 years ago
umd fix the frontend 4 years ago
LICENSE fix the frontend 4 years ago
README.md fix the frontend 4 years ago
build-info.json fix the frontend 4 years ago
index.js fix the frontend 4 years ago
package.json fix the frontend 4 years ago
profiling.js fix the frontend 4 years ago
server.browser.js fix the frontend 4 years ago
server.js fix the frontend 4 years ago
server.node.js fix the frontend 4 years ago
test-utils.js fix the frontend 4 years ago
unstable-fizz.browser.js fix the frontend 4 years ago
unstable-fizz.js fix the frontend 4 years ago
unstable-fizz.node.js fix the frontend 4 years ago
unstable-flight-client.js fix the frontend 4 years ago
unstable-flight-server.browser.js fix the frontend 4 years ago
unstable-flight-server.js fix the frontend 4 years ago
unstable-flight-server.node.js fix the frontend 4 years ago
unstable-native-dependencies.js fix the frontend 4 years ago

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