Sha256: 6f875cb63c3ade2ef3d5bc11cf46f93662e4f6468ed6823a51fe514e958bc6d4

Contents?: true

Size: 259 Bytes

Versions: 4

Compression:

Stored size: 259 Bytes

Contents

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);
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
isomorfeus-preact-10.7.3 node_modules/preact/compat/client.mjs
isomorfeus-preact-10.7.2 node_modules/preact/compat/client.mjs
isomorfeus-preact-10.7.1 node_modules/preact/compat/client.mjs
isomorfeus-preact-10.7.0 node_modules/preact/compat/client.mjs