mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-10 09:12:15 +01:00
12 lines
288 B
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>
|