frontend/app/components/preferences/page.vue
2026-01-09 21:47:12 +01:00

14 lines
261 B
Vue

<template>
<section class="gap-4 flex flex-col">
<h2 class="text-xl font-bold tracking-tight">{{ title }}</h2>
<slot />
</section>
</template>
<script lang="ts" setup>
const { title } = defineProps<{
title: string;
}>();
</script>