UNPKG

dragoid

Version:
5 lines 163 B
export const getChapterlist = async () => { const response = await fetch("/api/chapters"); const data = await response.json(); return data?.chapters || []; }