I want to add a collapsible sidebar table component which is rendered as an overlay over another component.
The below image is a container of 3 divisions each with a separate component.
<Container>
<ThumbnailContainer/>
<ImageContainer/>
<FieldContainer/>
<Container/>
//////////////////////////////////////////////////////////////////////////////////
<ThumbnailContainer/> <ImageContainer/> <FieldContainer/>
| | |
v v v
What I want to do is expand a sidebar with a table when the button Line Items is clicked from the FieldContainer. This sidebar must be an overlay displayed over the ImageContainer at the same height(from top) as the trigger button Line Items.
I've tried using Accordion(React Bootstrap), Overlay(React Bootstrap), and Drawer(Material UI) none of them worked as expected. What component can I use.
Thanks in Advance!
Any help or tips will be helpful!

