Portal

Portal can be used to place elements outside of the current DOM hierarchy.

Source
pnpm dlx dreamy add portal

Portal is useful when you need to render a component at the end of document for some reason.

Check the end of document.body in the dev tools for the rendered component, in the empty wrapper below.

<Portal>
	<div>Hello</div>
</Portal>