Initial commit.

This commit is contained in:
2025-10-11 17:09:34 +00:00
commit 092c410cbd
78 changed files with 11554 additions and 0 deletions

13
src/hooks/useHealth.ts Normal file
View File

@@ -0,0 +1,13 @@
import { useMutation } from '@tanstack/react-query';
import { apiService } from '../services/api';
interface HealthResponse {
service: string;
status: string;
}
export const useHealth = () => {
return useMutation<HealthResponse>({
mutationFn: apiService.getHealth,
});
};