mirror of
https://github.com/oneclickvirt/oneclickvirt.github.io.git
synced 2026-05-24 11:31:24 +08:00
14 lines
259 B
JavaScript
14 lines
259 B
JavaScript
import { render, hydrate } from 'preact/compat'
|
|
|
|
export function createRoot(container) {
|
|
return {
|
|
render(children) {
|
|
return render(children, container)
|
|
}
|
|
}
|
|
}
|
|
|
|
export function hydrateRoot(container, children) {
|
|
return hydrate(children, container);
|
|
}
|