# Silke React Hooks

```js
const ref = useHTMLElement('div', {}, document.body);
return ReactDOM.createPortal(
  <h1 style={{ position: 'absolute', top: 200, left: 300 }}>In a portal</h1>,
  ref.current,
);
```
