blob: c89013e892fdb088bb1929c54e9941ecf6463edb (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<script lang="ts" context="module">
export async function load() {
const res = await fetch("/api/matches", {
headers: {
"Content-Type": "application/json",
},
});
if (res.ok) {
return {
props: {
matches: await res.json(),
},
};
}
return {
status: res.status,
error: new Error("failed to load matches"),
};
}
</script>
<script lang="ts">
import MatchList from "$lib/components/matches/MatchList.svelte";
export let matches: object[];
</script>
<div class="container">
<MatchList {matches} />
</div>
<style lang="scss">
.container {
width: 800px;
margin: 0 auto;
}
</style>
|