File size: 157 Bytes
48ae63b
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
<script lang="ts">
	import { goto } from '$app/navigation';
	import { onMount } from 'svelte';

	onMount(() => {
		goto('/workspace/models');
	});
</script>