[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto skywatched.app
0

Configure Feed

Select the types of activity you want to include in your feed.

skywatched / src / lib / Components / Container.svelte
263 B 9 lines
1<script lang="ts"> 2 import { cn } from '../utils'; 3 4 const { children, class: className }: { children: () => any; class?: string } = $props(); 5</script> 6 7<div class={cn('mx-auto max-w-2xl sm:px-6 lg:max-w-4xl lg:px-8', className)}> 8 {@render children?.()} 9</div>