this repo has no description
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 14 lines 301 B view raw
1<script setup lang="ts"> 2import { DropdownMenuGroup, type DropdownMenuGroupProps } from 'reka-ui' 3 4const props = defineProps<DropdownMenuGroupProps>() 5</script> 6 7<template> 8 <DropdownMenuGroup 9 data-slot="dropdown-menu-group" 10 v-bind="props" 11 > 12 <slot /> 13 </DropdownMenuGroup> 14</template>