Wanted to widen Part 2 dynamically so xs or part 1 becomes 3 and part 2 becomes 9:
<Grid container>
<Grid item xs={6}>Part 1</Grid>
<Grid item xs={6}>Part 2</Grid>
</Grid>
I tried to use state to keep the value but got error as
<Grid item xs={{sizeOfPanel}}>
Please help