mirror of
https://github.com/withastro/astro.git
synced 2025-02-03 22:29:08 -05:00
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);
|