f7e86150e0
* fix preact render to modify server-rendered code * add changeset
4 lines
214 B
JavaScript
4 lines
214 B
JavaScript
import { h, render } from 'preact';
|
|
import StaticHtml from './static-html.js';
|
|
|
|
export default (element) => (Component, props, children) => render(h(Component, props, h(StaticHtml, { value: children })), element);
|