mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
8 lines
252 B
JavaScript
8 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
|
|
);
|