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

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

    start().then(startRequest);
</script>

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

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