Splits a container into 2 parts with resizable divider
import { SplitPane, SplitPaneProps } from "mui-extended"; const props: SplitPaneProps = { minSize: 180; maxSize: 500; } const splitPaneComponent = ( <SplitPane {...props}> <Child1 /> <child2 /> </SplitPane> );
Layout component uses SplitPane
in desktop mode
horizontal
and verticle
splitfirst
or second
Check SplitPaneProps
type for all available props
Write an email to opensource@sodaru.com