mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 15:10:03 +00:00
22 lines
407 B
JavaScript
22 lines
407 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
|
|
};
|