sql-snippets / src /routes /+page.server.ts
cfahlgren1's picture
cfahlgren1 HF staff
init
db39944
raw
history blame contribute delete
203 Bytes
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 }
}