summaryrefslogtreecommitdiff
path: root/packages/renderers/renderer-solid/static-html.js
blob: 9f1a394b5386c5d739159671018787ca7333acc1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { ssr } from 'solid-js/web/dist/server.js';

/**
 * Astro passes `children` as a string of HTML, so we need
 * a wrapper `astro-fragment` to render that content as VNodes.
 */
const StaticHtml = ({ innerHTML }) => {
	if (!innerHTML) return null;
	return ssr(`<astro-fragment>${innerHTML}</astro-fragment>`);
};

export default StaticHtml;