# Component/PanelTabs/PanelTab > Props: component-paneltabs-paneltab.props.txt ## Examples ### Abbreviation ```tsx { args: { title: '제목', number: 123456789, suffix: '건', highlight: false, caption: '', locale: 'ko-KR' }, render: props => { const [activeTab, setActiveTab] = useState('paneltab2-1'); const handleChange = (activeTab: string) => { setActiveTab(activeTab); }; return {tabs.map(({ title, number }, index) => )} {tabs2.map(({ title, number }, index) => )} ; } } ``` ### Base ```tsx { args: { title: '주문확인', number: 10, suffix: '건', highlight: true, caption: '최근 3달 999건' }, render: props => { const [activeTab, setActiveTab] = useState('paneltab3-1'); const handleChange = (activeTab: string) => { setActiveTab(activeTab); }; return ; } } ```