Files
gpui-component/docs/data/repo.data.js
Jason Lee d34ea6640a docs: Improve docs add more details. (#1447)
- Also update "Compare to others", close #1452
2025-10-29 02:41:28 +00:00

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());
},
};