mirror of
https://github.com/seriousm4x/UpSnap.git
synced 2026-08-04 19:25:13 -04:00
11 lines
197 B
Svelte
11 lines
197 B
Svelte
<script lang="ts">
|
|
import { fly } from 'svelte/transition';
|
|
let { url, children } = $props();
|
|
</script>
|
|
|
|
{#key url}
|
|
<div in:fly={{ y: 50, duration: 300 }}>
|
|
{@render children()}
|
|
</div>
|
|
{/key}
|