TdAI / llama.cpp /tools /ui /src /lib /components /app /settings /SettingsGroup.svelte
tda45's picture
Upload folder using huggingface_hub (part 8)
15c3607 verified
Raw
History Blame Contribute Delete
301 Bytes
<script lang="ts">
import type { Snippet } from 'svelte';
interface Props {
title: string;
children: Snippet;
}
let { title, children }: Props = $props();
</script>
<div>
<h3 class="mb-6 text-base font-semibold">{title}</h3>
<div class="space-y-8">
{@render children()}
</div>
</div>