astro/packages/integrations/react/client.js

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

16 lines
424 B
JavaScript
Raw Normal View History

import { createElement } from 'react';
import { hydrateRoot } from 'react-dom/client';
import StaticHtml from './static-html.js';
export default (element) => (Component, props, children) =>
hydrateRoot(
element,
createElement(
Component,
{ ...props, suppressHydrationWarning: true },
children != null
? createElement(StaticHtml, { value: children, suppressHydrationWarning: true })
: children
)
);