| 14356 | var reactReconciler = ReactFiberReconciler$3['default'] ? ReactFiberReconciler$3['default'] : ReactFiberReconciler$3; |
| 14357 | |
| 14358 | function createPortal$1(children, containerInfo, |
| 14359 | // TODO: figure out the API for cross-renderer implementation. |
| 14360 | implementation) { |
| 14361 | var key = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; |
| 14362 | |
| 14363 | return { |
| 14364 | // This tag allow us to uniquely identify this as a React Portal |
| 14365 | $$typeof: REACT_PORTAL_TYPE, |
| 14366 | key: key == null ? null : '' + key, |
| 14367 | children: children, |
| 14368 | containerInfo: containerInfo, |
| 14369 | implementation: implementation |
| 14370 | }; |
| 14371 | } |
| 14372 | |
| 14373 | // TODO: this is special because it gets imported during build. |
| 14374 | |