diff options
Diffstat (limited to 'web/pw-frontend/src/App.svelte')
-rw-r--r-- | web/pw-frontend/src/App.svelte | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/web/pw-frontend/src/App.svelte b/web/pw-frontend/src/App.svelte new file mode 100644 index 0000000..468b925 --- /dev/null +++ b/web/pw-frontend/src/App.svelte @@ -0,0 +1,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> |