mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-09 16:52:17 +01:00
add jetstream permissions, add dynamic inertia module loading, add shadcn components, change modals and dropdowns to shadcn dismissable layer,
12 lines
278 B
Vue
12 lines
278 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>
|