astro/packages/integrations/preact/client.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
252 B
JavaScript
Raw Normal View History

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