Module

ReactDOM

Package
purescript-react-dom
Repository
purescript-contrib/purescript-react-dom

#render Source

render :: ReactElement -> Element -> Effect (Maybe ReactComponent)

Render a React element in a document element. Returns Nothing for stateless components.

#unmountComponentAtNode Source

unmountComponentAtNode :: Element -> Effect Boolean

Removes a mounted React element in a document element. Returns true if it was unmounted, false otherwise.

#findDOMNode Source

findDOMNode :: ReactComponent -> Effect Element

Finds the DOM node rendered by the component.

#renderToString Source

renderToString :: ReactElement -> String

Render a React element as a string.

#renderToStaticMarkup Source

renderToStaticMarkup :: ReactElement -> String

Render a React element as static markup string without extra DOM attributes.

Modules
ReactDOM