7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
const API_URL = "https://api.github.com/repos/longbridge/gpui-component";
|
|
|
|
export default {
|
|
async load() {
|
|
return await fetch(API_URL).then((res) => res.json());
|
|
},
|
|
};
|