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>