aboutsummaryrefslogtreecommitdiff
path: root/web/pw-frontend/src/App.svelte
blob: 468b9250e812e70787fb140afeb9fc8d52c4578d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script lang="ts">
import MatchBrowser from './lib/MatchBrowser.svelte';
</script>

<main>
  <MatchBrowser />
</main>

<style>
  :root {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
      Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
</style>