Use page transition component to avoid repetition on main
This commit is contained in:
14
src/components/PageTransition.svelte
Normal file
14
src/components/PageTransition.svelte
Normal file
@@ -0,0 +1,14 @@
|
||||
<script lang="ts">
|
||||
import { fade } from 'svelte/transition'
|
||||
|
||||
export let refresh = ''
|
||||
</script>
|
||||
|
||||
{#key refresh}
|
||||
<div
|
||||
in:fade={{ duration: 400, delay: 500 }}
|
||||
out:fade={{ duration: 400 }}
|
||||
>
|
||||
<slot />
|
||||
</div>
|
||||
{/key}
|
||||
Reference in New Issue
Block a user