astro/packages/integrations/preact/client.js

9 lines
252 B
JavaScript
Raw Normal View History

import { h, render } from 'preact';
import StaticHtml from './static-html.js';
2022-04-02 20:15:41 +00:00
export default (element) => (Component, props, children) =>
render(
h(Component, props, children != null ? h(StaticHtml, { value: children }) : children),
element
);