summaryrefslogtreecommitdiff
path: root/packages/renderers/preact/client.js
blob: 2b8d4bd49bfdd7380d1727b3dd3e2b14f53591cd (plain) (blame)
1
2
3
4
import { h, hydrate } from 'preact';
import StaticHtml from './static-html.js';

export default (element) => (Component, props, children) => hydrate(h(Component, props, h(StaticHtml, { value: children })), element);