Move into app/

This commit is contained in:
2025-10-07 13:52:57 +07:00
parent 6dd7d33661
commit 36f5508d48
95 changed files with 28 additions and 19 deletions
+12
View File
@@ -0,0 +1,12 @@
export const useFontLists = (fontUrl: string, fontListFile: string) => {
const {data: fonts, error, pending} = useFetch(fontUrl + fontListFile, {
key: 'font-lists',
server: false,
lazy: false,
});
return {
fonts,
error,
pending
}
}