UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

8 lines (6 loc) 177 B
import {createRoot} from 'react-dom/client' export function reactRender(subject, into) { const root = createRoot(into) root.render(subject) return () => root.unmount() }