RootPortal
Usage
import { Main, RootPortal } from '@aragon/ui'
const App = () => (
<Main>
<ul>
<li>
<p>This gets rendered here in the DOM tree.</p>
<RootPortal>
<p>This gets rendered at the level of Main in the DOM tree.</p>
</RootPortal>
</li>
</ul>
</Main>
)Demonstration

Props
children
childrenLast updated
Was this helpful?
