mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-25 05:42:23 +02:00
Signed-off-by: Alexander Platov <alexander.platov@hardcoreeng.com>
15 lines
346 B
Svelte
15 lines
346 B
Svelte
<script lang="ts">
|
|
import { pushRootBarComponent } from '@hcengineering/ui'
|
|
import { onMount } from 'svelte'
|
|
|
|
import uploader from '../plugin'
|
|
|
|
let parentElement: HTMLDivElement
|
|
|
|
onMount(() => {
|
|
pushRootBarComponent('right', uploader.component.FileUploadExt, 10)
|
|
})
|
|
</script>
|
|
|
|
<div bind:this={parentElement} class="hidden"></div>
|