Files
solidtime/resources/js/Components/ui/calendar/CalendarGridBody.vue

12 lines
263 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>