mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
14 lines
317 B
JavaScript
14 lines
317 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) {}
|
||
|
}
|
||
|
}
|