astro/packages/integrations/preact/client.js
2022-05-31 16:47:13 +00:00

10 lines
300 B
JavaScript

import { h, render } from 'preact';
import StaticHtml from './static-html.js';
export default (element) => (Component, props, children) => {
if (!element.hasAttribute('ssr')) return;
render(
h(Component, props, children != null ? h(StaticHtml, { value: children }) : children),
element
);
};