mirror of
https://github.com/usebruno/bruno.git
synced 2025-08-03 12:37:35 +02:00
* poc: bruno app rsbuild * fix: updates --------- Co-authored-by: Anoop M D <anoop.md1421@gmail.com>
7 lines
148 B
JavaScript
7 lines
148 B
JavaScript
import { createPortal } from 'react-dom';
|
|
|
|
function Portal({ children }) {
|
|
return createPortal(children, document.body);
|
|
}
|
|
export default Portal;
|