Portal
- The Portal component.
import { Portal } from "@dreamy-ui/react/rsc";
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>