16 lines
464 B
JavaScript
16 lines
464 B
JavaScript
import { createElement } from 'react';
|
|
import { render, hydrate } from 'react-dom';
|
|
import StaticHtml from './static-html.js';
|
|
|
|
export default (element) =>
|
|
(Component, props, children, { client }) => {
|
|
const componentEl = createElement(
|
|
Component,
|
|
props,
|
|
children != null ? createElement(StaticHtml, { value: children }) : children
|
|
);
|
|
if (client === 'only') {
|
|
return render(componentEl, element);
|
|
}
|
|
return hydrate(componentEl, element);
|
|
};
|