import "./App.css"; import Grid from "react-grid-dashboard"; const layout = { // w=1 h=1 – default and can be ommited // if no x or y is set grid will auto position the item menu: { w: 12 }, a: { y: 1, w: 5, h: 4 }, b: { y: 5, w: 5, h: 7 }, c: { y: 1, x: 5, w: 7, h: 11 }, }; function App() { return (
<>
Fixed height menu
Component A
{"Component B, scrollable; ".repeat(100)}
Component C
); } export default App;