bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/screenreader-alert/container.tsx
João Victor Nunes 71dbe06dfd
fix: restore screen reader alerts for unread chat messages (#19713)
* fix: restore screen reader alerts for unread chat messages
* fix: move screen reader alert adapter up the component tree
2024-04-05 18:30:58 -04:00

16 lines
319 B
TypeScript

import React from 'react';
import ScreenReaderAlert from './component';
import { useOlderAlert } from './queue';
const ScreenReaderAlertContainer = () => {
const olderAlert = useOlderAlert();
return (
<ScreenReaderAlert
olderAlert={olderAlert}
/>
);
};
export default ScreenReaderAlertContainer;