25a5b9a89a
* Revert "Update preact example to match @astrojs/preact ranges (#4840)" This reverts commitd650a1161a
. * Revert "[ci] format" This reverts commite3c78c5b16
. * Revert "Support shared signals in Preact islands (#4763)" This reverts commit5e46be5468
.
14 lines
445 B
JavaScript
14 lines
445 B
JavaScript
import { h, render } from 'preact';
|
|
import StaticHtml from './static-html.js';
|
|
|
|
export default (element) =>
|
|
(Component, props, { default: children, ...slotted }) => {
|
|
if (!element.hasAttribute('ssr')) return;
|
|
for (const [key, value] of Object.entries(slotted)) {
|
|
props[key] = h(StaticHtml, { value, name: key });
|
|
}
|
|
render(
|
|
h(Component, props, children != null ? h(StaticHtml, { value: children }) : children),
|
|
element
|
|
);
|
|
};
|