5 lines
244 B
JavaScript
5 lines
244 B
JavaScript
|
import { h, render } from 'preact';
|
||
|
import StaticHtml from './static-html.js';
|
||
|
|
||
|
export default (element) => (Component, props, children) => render(h(Component, props, children != null ? h(StaticHtml, { value: children }) : children), element);
|