File size: 235 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 |
<script>import { onMount } from 'svelte';
let _onMount = undefined;
export { _onMount as onMount };
let _onDestroy = undefined;
export { _onDestroy as onDestroy };
onMount(() => {
_onMount?.();
return _onDestroy;
});
</script>
|