2024-02-21 20:10:42 -08:00
|
|
|
<script lang="ts">
|
2024-02-24 01:38:00 -08:00
|
|
|
import AppContainer from '../AppContainer.svelte'
|
2024-02-21 20:10:42 -08:00
|
|
|
import CameraContainer from './CameraContainer.svelte'
|
|
|
|
</script>
|
|
|
|
|
2024-02-24 01:38:00 -08:00
|
|
|
<AppContainer
|
|
|
|
class="px-10 py-20 flex gap-4 w-full backdrop-blur-lg justify-center h-full rounded-3xl shadow-md bg-slate-300 bg-opacity-30"
|
2024-02-21 20:10:42 -08:00
|
|
|
>
|
|
|
|
<div class="my-auto">
|
2024-02-23 18:02:10 -08:00
|
|
|
<CameraContainer cameraUrl="camera_url_here" />
|
2024-02-21 20:10:42 -08:00
|
|
|
</div>
|
|
|
|
<div class="my-auto">
|
2024-02-23 18:02:10 -08:00
|
|
|
<CameraContainer cameraUrl="camera_url_here" />
|
2024-02-21 20:10:42 -08:00
|
|
|
</div>
|
2024-02-24 01:38:00 -08:00
|
|
|
</AppContainer>
|