Initial Commit

This commit is contained in:
2026-04-09 23:23:31 +02:00
commit 441a7365d7
93 changed files with 15137 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { useQuery } from '@tanstack/react-query';
import { api } from '../api';
export function useTonight() {
return useQuery({
queryKey: ['tonight'],
queryFn: () => api.tonight.get(),
staleTime: 60_000,
refetchInterval: 60_000,
});
}