5 lines
216 B
JavaScript
5 lines
216 B
JavaScript
|
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);
|