Files
METARIUS/src/lib/components/GridGallery.svelte
Luke Else 0b0684a334
Some checks failed
Build and Push Latest Docker Image / build-and-push (push) Successful in 1m37s
Build and Push Development Docker Image / build-and-push (push) Successful in 1m41s
Run Unit and Integration Tests / test (push) Failing after 1m1s
FEAT: Added barebones input form
2025-06-18 20:36:50 +01:00

7 lines
151 B
Svelte

<script lang="ts">
</script>
<!-- GridGallery.svelte -->
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 w-full">
<slot />
</div>