auto-claude: subtask-4-3 - Add JSDoc to useProjectData.ts hook
This commit is contained in:
@@ -1,7 +1,18 @@
|
||||
// src/hooks/useProjectData.ts
|
||||
/**
|
||||
* Project Data Hook
|
||||
* Custom hook for dynamically loading project data based on current language
|
||||
*/
|
||||
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { useState, useEffect } from 'react';
|
||||
|
||||
/**
|
||||
* Loads project data dynamically based on project ID and current language
|
||||
*
|
||||
* @template T - The type of the project data object
|
||||
* @param {string} projectId - The unique identifier of the project
|
||||
* @returns {T | null} The project data object or null if loading fails
|
||||
*/
|
||||
export const useProjectData = <T = unknown>(projectId: string): T | null => {
|
||||
const { i18n } = useTranslation();
|
||||
const [projectData, setProjectData] = useState<T | null>(null);
|
||||
|
||||
Reference in New Issue
Block a user