diff --git a/src/lib/components/atoms/Search.svelte b/src/lib/components/atoms/Search.svelte index d5995cb..a7bbb56 100644 --- a/src/lib/components/atoms/Search.svelte +++ b/src/lib/components/atoms/Search.svelte @@ -3,8 +3,19 @@ export let searchTerm: string | null; import { fade } from 'svelte/transition'; import { quintOut } from 'svelte/easing'; + // import { onMount } from 'svelte'; + + // let search: HTMLInputElement; + + // function handleKeydown(event) { + // if (event.code === 'Slash') { + // search.focus; + // } + // } + +