16 lines
319 B
TypeScript
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;
|