astro/packages/integrations/preact/client.js
2022-04-02 14:15:41 -06:00

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
);