about summary refs log tree commit diff
path: root/assets/src/components/RequestPage.svelte
blob: 0c0b11182ee7ff33d32b40e9747a422c9e039d35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script lang="ts">
    import { start, Type } from "../network/channel/connection";

    // TODO: Switch to store-based state updates.

    start(Type.REQUEST);
</script>

<main>
    <h1>Requesting</h1>
</main>

<style>
    h1 {
        font-size: 4em;
    }
</style>