mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-19 13:53:24 +02:00
11 lines
276 B
Svelte
11 lines
276 B
Svelte
<script lang="ts">
|
|
import FullScreenModal from '../Modal/FullScreenModal.svelte';
|
|
import VideoPlayer from './VideoPlayer.svelte';
|
|
export let modalId: symbol;
|
|
export let id: string;
|
|
</script>
|
|
|
|
<FullScreenModal {modalId}>
|
|
<VideoPlayer jellyfinId={id} />
|
|
</FullScreenModal>
|