UNPKG

@workday/canvas-kit-react

Version:

The parent module that contains all Workday Canvas Kit React components

13 lines (12 loc) 334 B
export function useLiveRegion(config = {}) { const { shouldAnnounceToScreenReader = true, ...restConfig } = config; if (shouldAnnounceToScreenReader) { return { 'aria-atomic': true, 'aria-live': 'polite', role: 'status', ...restConfig, }; } return {}; }