UNPKG

@ray-core/runtime

Version:

Ray 是一个全新的基于 React 的小程序开发框架

12 lines (11 loc) 337 B
import { Portal } from 'react-is'; export function createPortal(children, containerInfo, key) { return { // This tag allow us to uniquely identify this as a React Portal $$typeof: Portal, key: key || '', children: children, containerInfo: containerInfo, implementation: null, }; }