forked from cardosofelipe/pragma-stack
- 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.
13 lines
221 B
TypeScript
13 lines
221 B
TypeScript
/**
|
|
* Custom React Hooks
|
|
*
|
|
* @module lib/hooks
|
|
*/
|
|
|
|
export { useDebounce } from './useDebounce';
|
|
export {
|
|
useProjectEvents,
|
|
type UseProjectEventsOptions,
|
|
type UseProjectEventsResult,
|
|
} from './useProjectEvents';
|