2022-03-18 22:35:45 +00:00
|
|
|
import SvelteWrapper from './Wrapper.svelte.ssr.js';
|
|
|
|
|
|
|
|
function check(Component) {
|
|
|
|
return Component['render'] && Component['$$render'];
|
|
|
|
}
|
|
|
|
|
|
|
|
async function renderToStaticMarkup(Component, props, children) {
|
2022-04-02 20:15:41 +00:00
|
|
|
const { html } = SvelteWrapper.render({
|
|
|
|
__astro_component: Component,
|
|
|
|
__astro_children: children,
|
|
|
|
...props,
|
|
|
|
});
|
2022-03-18 22:35:45 +00:00
|
|
|
return { html };
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
check,
|
|
|
|
renderToStaticMarkup,
|
|
|
|
};
|