Files
huly-platform/plugins/board-resources/src/components/UserBoxList.svelte
T
2022-05-17 14:12:33 +07:00

12 lines
338 B
Svelte

<script lang="ts">
import contact, { Employee } from '@anticrm/contact'
import { Ref } from '@anticrm/core'
import { UserBoxList } from '@anticrm/presentation'
import board from '../plugin'
export let value: Ref<Employee>[]
</script>
<UserBoxList items={value} _class={contact.class.Employee} label={board.string.Members} />