React TabPanel - Overview

The TabPanel is a UI component consisting of the Tabs and MultiView UI components. It automatically synchronizes the selected tab with the currently displayed view and vice versa.

View Demo

The following code adds a simple TabPanel to your page.

App.js
  • import React from 'react';
  • import 'devextreme/dist/css/dx.common.css';
  • import 'devextreme/dist/css/dx.light.css';
  •  
  • import TabPanel from 'devextreme-react/tab-panel';
  •  
  • const tabPanelItems = [{
  • title: 'Info',
  • text: 'This is Info Tab'
  • }, {
  • title: 'Contacts',
  • text: 'This is Contacts Tab'
  • }, {
  • title: 'Address',
  • text: 'This is Address Tab'
  • }];
  •  
  • class App extends React.Component {
  • render() {
  • return (
  • <TabPanel
  • items={tabPanelItems}
  • />
  • );
  • }
  • }
  •  
  • export default App;

Note that field names in these data source items are conventional. This provides a default appearance for tabs and views; that is, title goes to the tab, and text goes to the view. But more often, data source objects have fields with different names. For correct rendering in these cases, specify a custom template.

See Also