In react one can set col widths depending on the screen size:
<Col xs={12} sm={4} md={4} lg={4}>
The problem I am having is that My Parent component is rendering two child components side by side, A and B. A is a table that holds other components in every table cell, Child1, Child2 etc..
How can I define <Col>
widths for Child1 based on my parent A width and not the screen width?