Perplexica/ui/lib/fetchNewsData.ts
2024-07-09 14:17:37 +08:00

9 lines
265 B
TypeScript

export async function fetchNewsData(id: string) {
const response = await fetch(
`https://raw.githubusercontent.com/newspedia-crew/newspedia-web/intern-change/public/data/${id}.json`,
);
if (!response.ok) {
return null;
}
return response.json();
}