6 lines
149 B
TypeScript
6 lines
149 B
TypeScript
import type { PageServerLoad } from "./$types";
|
|
|
|
export const load: PageServerLoad = async () => {
|
|
return { accounts: [] as { id: string }[] };
|
|
};
|