Bootstrap modal component.
it's required to have an element `
` somewhere on the page since modals are rendered in portals.
```js
```
I have no idea why example doesn't work here but you can investigate HTML code and Foris project.
```js
import {ModalHeader, ModalBody, ModalFooter} from './Modal';
import {useState} from 'react';
const [shown, setShown] = useState(false);
<>