9 lines
252 B
JavaScript
9 lines
252 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
|
||
|
);
|