const Panel = () => {
return (
<Grid style={{ height: '100%' }}>
<Grid.Col md={12} lg={6}>
<Textarea />
</Grid.Col>
<Grid.Col md={12} lg={6}>
<Textarea />
</Grid.Col>
</Grid>
)
}
what should i do to make Textarea stretch full? (for example, the third picture)
I cannot set minRow and maxRow for Textarea because that would be a fixed value.