3df41d2308
* fix(vscode): Markdown frontmatter should use TSX, not YAML * test: add test for #153 * chore: bump deps * chore: update to use @astrojs scope * fix: Markdown parse error when only child is `{expression}` * fix: update renderer edge cases * fix: failing test * fix: update renderer
13 lines
318 B
JavaScript
13 lines
318 B
JavaScript
import SvelteWrapper from './Wrapper.svelte';
|
|
|
|
export default (target) => {
|
|
return (component, props, children) => {
|
|
try {
|
|
new SvelteWrapper({
|
|
target,
|
|
props: { __astro_component: component, __astro_children: children, ...props },
|
|
hydrate: true,
|
|
});
|
|
} catch (e) {}
|
|
};
|
|
};
|