UNPKG

react-best-modal

Version:

Simple is best. Accessible out of the box, tiny api, bring your own styles.

8 lines (7 loc) 216 B
import * as React from 'react'; import { createPortal } from 'react-dom'; export default class Portal extends React.Component { render() { return createPortal(this.props.children, document.body); } }