(children, containerInfo, implementation)
| 2877 | }, |
| 2878 | REACT_PORTAL_TYPE = Symbol.for("react.portal"); |
| 2879 | function createPortal$1(children, containerInfo, implementation) { |
| 2880 | var key = |
| 2881 | 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null; |
| 2882 | return { |
| 2883 | $$typeof: REACT_PORTAL_TYPE, |
| 2884 | key: null == key ? null : "" + key, |
| 2885 | children: children, |
| 2886 | containerInfo: containerInfo, |
| 2887 | implementation: implementation |
| 2888 | }; |
| 2889 | } |
| 2890 | var ReactSharedInternals = |
| 2891 | React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE; |
| 2892 | function getCrossOriginStringAs(as, input) { |
no test coverage detected
searching dependent graphs…