mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-23 12:52:24 +02:00
12 lines
338 B
Svelte
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} />
|