Files
homebox/frontend/components/ui/calendar/CalendarGridBody.vue
2025-06-02 12:08:29 +00:00

12 lines
253 B
Vue

<script lang="ts" setup>
import { CalendarGridBody, type CalendarGridBodyProps } from 'reka-ui'
const props = defineProps<CalendarGridBodyProps>()
</script>
<template>
<CalendarGridBody v-bind="props">
<slot />
</CalendarGridBody>
</template>