Your IP : 216.73.216.79


Current Path : /var/www/html/redd/public/tailadmin/node_modules/preact/compat/
Upload File :
Current File : /var/www/html/redd/public/tailadmin/node_modules/preact/compat/client.mjs

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
}