Files
SpotMicroESP32-Leika/app/src/components/Views/Stream.svelte
T
2023-05-16 20:25:06 +02:00

12 lines
246 B
Svelte

<script lang="ts">
import { onDestroy } from 'svelte';
let videoStream = '//leika.local/stream';
onDestroy(() => {
videoStream = '#';
});
</script>
<img src={videoStream} class="object-contain w-full h-full" alt="Live stream is down" />