hc99's picture
Add files using upload-large-folder tool
8766bc5 verified
raw
history blame
275 Bytes
import { logos, tweets } from "$lib/assets";
export async function load({ fetch }: any) {
let r = await fetch("https://api.github.com/repos/gradio-app/gradio");
let j = await r.json();
let star_count = j.stargazers_count;
return {
logos,
tweets,
star_count
};
}