Spaces:
Running
Running
File size: 203 Bytes
db39944 |
1 2 3 4 5 6 7 8 |
import type { Snippet } from '$lib/types'
export async function load({ fetch }) {
const response = await fetch('api/snippets')
const snippets: Snippet[] = await response.json()
return { snippets }
}
|