mirror of
https://github.com/hcengineering/platform.git
synced 2025-03-31 12:38:27 +00:00
9 lines
203 B
Svelte
9 lines
203 B
Svelte
<script lang="ts">
|
|
import { Integration } from '@hcengineering/setting'
|
|
import Connect from './Connect.svelte'
|
|
|
|
export let integration: Integration
|
|
</script>
|
|
|
|
<Connect bind:integration on:close />
|