Files
syndarix/frontend/src/lib/hooks/index.ts
Felipe Cardoso a4c91cb8c3 refactor(frontend): clean up code by consolidating multi-line JSX into single lines where feasible
- Refactored JSX elements to improve readability by collapsing multi-line props and attributes into single lines if their length permits.
- Improved consistency in component imports by grouping and consolidating them.
- No functional changes, purely restructuring for clarity and maintainability.
2026-01-01 11:46:57 +01:00

13 lines
221 B
TypeScript

/**
* Custom React Hooks
*
* @module lib/hooks
*/
export { useDebounce } from './useDebounce';
export {
useProjectEvents,
type UseProjectEventsOptions,
type UseProjectEventsResult,
} from './useProjectEvents';