Files
neo/frontend/components/ui/calendar/CalendarGridBody.vue
Francisco Gaona fbfaf7bb9f WIP - field types
2025-12-21 00:46:18 +01:00

13 lines
278 B
Vue

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