astro/packages/integrations/svelte/client.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
319 B
JavaScript
Raw Normal View History

import SvelteWrapper from './Wrapper.svelte';
export default (target) => {
return (component, props, children) => {
delete props['class'];
try {
new SvelteWrapper({
target,
props: { __astro_component: component, __astro_children: children, ...props },
hydrate: true,
});
} catch (e) {}
};
};