Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | /** * # React Hooks Module * * This module exports all custom hooks used throughout the CIA Compliance Manager. * * ## Business Perspective * Custom hooks encapsulate business logic and security assessment functionality, * enabling consistent behavior across the application. 🔄 * * ## Technical Perspective * Centralized hook exports simplify imports and promote hook reuse. * * @packageDocumentation */ // Security Level Hooks export { default as useCIAContentService } from "./useCIAContentService"; export { useCIAOptions } from "./useCIAOptions"; // Add other hooks as they're created |