bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/screenreader-alert/container.tsx

16 lines
319 B
TypeScript
Raw Normal View History

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