2025-05-31 22:40:29 +02:00

23 lines
400 B
JavaScript

import { render, hydrate, unmountComponentAtNode } from 'preact/compat'
export function createRoot(container) {
return {
render(children) {
render(children, container)
},
unmount() {
unmountComponentAtNode(container)
}
}
}
export function hydrateRoot(container, children) {
hydrate(children, container)
return createRoot(container)
}
export default {
createRoot,
hydrateRoot
}