Files
solidtime/resources/js/Components/ui/range-calendar/RangeCalendarGridBody.vue

12 lines
288 B
Vue

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