({ children }: PortalContainerProps)
| 44 | } |
| 45 | |
| 46 | const result = function Container({ children }: PortalContainerProps) { |
| 47 | return createPortal(createElement('div', null, children), el); |
| 48 | }; |
| 49 | |
| 50 | elContainerMap.set(el, result); |
| 51 |
nothing calls this directly
no outgoing calls
no test coverage detected