Code
Props
Props
Data Type
Required
Default Tab
TabGroupElement
Props
Data Type
Required
className
Example
Components Dependency
Live Demo
React
Last updated
Last updated
import React from 'react';
import {TabGroup, TabGroupElement} from '@2600hz/sds-react-components';
const Example = ()=>{
return(
<div className='container'>
<TabGroup defaultTab={2}>
<TabGroupElement title='First Tab'>
<p>Some random text...</p>
</TabGroupElement>
<TabGroupElement title='Second Tab'>
<p>Some random text...</p>
</TabGroupElement>
<TabGroupElement title='Third Tab'>
<p>Some random text...</p>
</TabGroupElement>
</TabGroup>
</div>
);
}
export default Example;