New to KendoReactLearn about KendoReact Free.

Splitter

A subclass of React.Component.

Represents the KendoReact Splitter component.

jsx
class App extends React.Component {
   render() {
       return (
           <div>
               <Splitter
                   style={{height: 400}}
                   orientation={'vertical'}
               >
                   <div>Pane 1</div>
                   <div>Pane 2</div>
                   <div>Pane 3</div>
               </Splitter>
           </div>
       );
   }
}

ReactDOM.render(<App />, document.querySelector('my-app'));
NameTypeDefaultDescription

props

Readonly<SplitterProps>

The props of the Splitter component.

Not finding the help you need?
Contact Support