]> Untitled Git - lemmy-ui.git/blob - src/shared/utils/app/fetch-theme-list.ts
fix: Fix badge alignment and break out into component
[lemmy-ui.git] / src / shared / utils / app / fetch-theme-list.ts
1 export default async function fetchThemeList(): Promise<string[]> {
2   return fetch("/css/themelist").then(res => res.json());
3 }