about summary refs log tree commit diff
path: root/client/src/components/Responses.svelte
blob: 7124f1e87879a6ef749b8f2f8ce34aef9b16e70f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<script lang="ts">
    import Response from "./Response.svelte"
    import { slide } from 'svelte/transition';
    import { links } from "$data/links";
</script>

<style>
    ul {
        list-style: none;
        padding: 0 10px;
    }

    li {
        margin-bottom: 10px;
    }
</style>

<ul>
    {#each $links as info (info.nonce)}
        <li transition:slide >
            <Response {info}/>
        </li>
    {/each}
</ul>