render function

dynamic render(
  1. dynamic element,
  2. Element mountNode
)

Renders the provided element into the DOM mounted in the provided mountNode and returns a reference to it based on its type:

  1. Returns an Element if element is a DOM component (e.g. Dom.div).
  2. Returns a React Component if element is a composite component.

Throws if element or mountNode are null.

If the element was previously rendered into the mountNode, this will perform an update on it and only mutate the DOM as necessary to reflect the latest React component.

Use unmountComponentAtNode to unmount the instance.

Proxies react_dom.render.

Implementation

dynamic render(/*ReactNode*/ dynamic element, Element mountNode) {
  return react_dom.render(element, mountNode);
}