11 lines
364 B
Svelte
11 lines
364 B
Svelte
<script lang="ts">
|
|
import { searchTerm } from "$lib/stores/layout";
|
|
import { albums } from "$lib/util/testdata";
|
|
|
|
import SimpleWrapper from "$lib/components/layout/SimpleWrapper.svelte";
|
|
import AlbumGrid from "$lib/components/tiles/AlbumGrid.svelte";
|
|
</script>
|
|
|
|
<SimpleWrapper>
|
|
<AlbumGrid {albums} searchTerm={$searchTerm} withArtist />
|
|
</SimpleWrapper>
|