Initial Commit

This commit is contained in:
2026-04-09 23:23:31 +02:00
commit a88a905d52
94 changed files with 15170 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { useQuery } from '@tanstack/react-query';
import { api } from '../api';
export function useStats() {
return useQuery({
queryKey: ['stats'],
queryFn: () => api.stats.get(),
staleTime: 5 * 60_000,
});
}