Skip to content

Instantly share code, notes, and snippets.

@skflowne
Last active August 5, 2020 22:14
Show Gist options
  • Save skflowne/0bb2577be78cbd36d8cc08b54e7695ff to your computer and use it in GitHub Desktop.
Save skflowne/0bb2577be78cbd36d8cc08b54e7695ff to your computer and use it in GitHub Desktop.
<script lang="ts">
// ...
import files from "./store/files"
import fileSearchResults from "./store/fileSearchResults"
let searching = false
// ...
</script>
<Tailwind />
<main>
{#if searching}
<FileSearch />
{/if}
<FileList files={searching ? $fileSearchResults : $files} />
</main>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment