]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/blob
4fb0c1e24f72e239e360a18c954b6adb56f0f539
[pkg/ggml/sources/llama.cpp] /
1 <script lang="ts">
2 interface Props {
3 isLoading: boolean;
4 }
5
6 let { isLoading }: Props = $props();
7 </script>
8
9 <div class="py-4 text-center text-sm text-muted-foreground">
10 {#if isLoading}
11 Loading resources...
12 {:else}
13 No resources available
14 {/if}
15 </div>