Spaces:
Runtime error
Runtime error
File size: 203 Bytes
6946674 |
1 2 3 4 5 6 |
import { PUBLIC_API_BASE } from '$env/static/public';
export async function load({ fetch }) {
const rooms = await fetch(PUBLIC_API_BASE + "/rooms").then((res) => res.json());
return { rooms };
} |