blob: 01bd8716ef9632c63ec09dc9b6c8124e7d087b94 (
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;
|