Feature request: height property
kasbah opened this issue · 1 comments
kasbah commented
denisraslov commented
Hi @kasbah
If I understood this issue correctly, it's available to set a height for the grid right now already. The grid gets the height of a container where it is rendered, so to set the height of the grid, you have to set the height for the container.
For example (here the height of the grid is 100px):
<div style={{ height: '100px' }}>
<Grid />
</div>