You've already forked gpui-component
mirror of
https://github.com/librekeys/gpui-component.git
synced 2026-04-14 08:46:29 -07:00
8 lines
176 B
JavaScript
8 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());
|
|
},
|
|
};
|