Files
immich/web/src/lib/components/layouts/PageContent.svelte

13 lines
244 B
Svelte
Raw Normal View History

2025-05-14 11:23:57 -04:00
<script lang="ts">
2025-05-14 12:30:47 -04:00
import { Container } from '@immich/ui';
2025-05-14 11:23:57 -04:00
import type { Snippet } from 'svelte';
2025-05-14 12:30:47 -04:00
type Props = {
2025-05-14 11:23:57 -04:00
children?: Snippet;
2025-05-14 12:30:47 -04:00
};
2025-05-14 11:23:57 -04:00
2025-05-14 12:30:47 -04:00
const { children }: Props = $props();
2025-05-14 11:23:57 -04:00
</script>
2025-05-14 12:30:47 -04:00
<Container class="p-2 pb-16" {children} />