mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
12 lines
361 B
Svelte
12 lines
361 B
Svelte
<script lang="ts">
|
|
import { superForm } from 'sveltekit-superforms/client';
|
|
import { gameStore } from '$lib/stores/gameSearchStore';
|
|
import TextSearch from '$lib/components/search/textSearch/index.svelte';
|
|
|
|
export let data;
|
|
console.log("search page data", data);
|
|
</script>
|
|
|
|
<div class="game-search">
|
|
<TextSearch showButton advancedSearch {data} />
|
|
</div>
|