18 lines
354 B
JavaScript
18 lines
354 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)
|
||
|
}
|