hrms-manual/node_modules/preact/compat/client.mjs

23 lines
400 B
JavaScript
Raw Normal View History

2023-09-06 14:51:44 +07:00
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
}