24 lines
658 B
TypeScript
24 lines
658 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import FocusTrap from '@mui/material/Unstable_TrapFocus';
|
||
|
|
|
||
|
|
export default function BaseFocusTrap() {
|
||
|
|
const [open, close] = React.useReducer(() => false, true);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<React.Fragment>
|
||
|
|
<button type="button" autoFocus data-testid="initial-focus">
|
||
|
|
initial focus
|
||
|
|
</button>
|
||
|
|
<FocusTrap isEnabled={() => true} open={open} disableAutoFocus>
|
||
|
|
<div data-testid="root">
|
||
|
|
<div>Title</div>
|
||
|
|
<button type="button" onClick={close}>
|
||
|
|
close
|
||
|
|
</button>
|
||
|
|
<button type="button">noop</button>
|
||
|
|
</div>
|
||
|
|
</FocusTrap>
|
||
|
|
</React.Fragment>
|
||
|
|
);
|
||
|
|
}
|