6386c14d00
* update examples * add initial integrations * update tests * update astro * update ci * get final tests working * update injectelement todo * update ben code review * respond to final code review feedback
4 lines
244 B
JavaScript
4 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);
|