0.0.1 • Published 3 years ago

lumino-dockpanel-react v0.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

lumino-dockpanel-react

The DockPanel API is similar to that of react-grid-layout, where each react child component is the a widget in the dock panel and a user defined layout configuration is used to layout the items appropriately

Install

$ npm i lumino-dockpanel-react

Code Sample

<DockPanel onLayoutChange={console.log} layout={layout}>
    <div key="yellow" title="Yellow Title" className="yellow"></div>
    <div key="red" title="Red Title" className="red"></div>
    <div key="blue" className="blue"></div>
</DockPanel>

See full example