sanifae/src/routes/+layout.js
2023-02-03 21:54:01 -05:00

8 lines
No EOL
208 B
JavaScript

/** @type {import('./$types').PageLoad} */
export async function load({ fetch }) {
const res = await fetch(`/api/token`);
const username = await res.json();
return { username: username.data };
}