github-actions[bot]
GitHub deploy: 143cf67e0503dd8cc322c2fa1efc9614cb5f8ae3
af1516d
raw
history blame contribute delete
247 Bytes
<script>
import { goto } from '$app/navigation';
import { onMount } from 'svelte';
import Evaluations from '$lib/components/admin/Evaluations.svelte';
onMount(() => {
goto('/admin/evaluations/leaderboard');
});
</script>
<Evaluations />