jstd-web/node_modules/preact/compat/client.mjs

23 lines
407 B
JavaScript
Raw Normal View History

2025-11-25 15:23:22 +08: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
};