mirror of
https://github.com/immich-app/immich.git
synced 2025-11-29 17:55:18 -05:00
13 lines
244 B
Svelte
13 lines
244 B
Svelte
<script lang="ts">
|
|
import { Container } from '@immich/ui';
|
|
import type { Snippet } from 'svelte';
|
|
|
|
type Props = {
|
|
children?: Snippet;
|
|
};
|
|
|
|
const { children }: Props = $props();
|
|
</script>
|
|
|
|
<Container class="p-2 pb-16" {children} />
|