--- meta: title: Tab Panel description: Tab panels are used inside tab groups to display tabbed content. layout: component --- ```html:preview General Custom Advanced Disabled This is the general tab panel. This is the custom tab panel. This is the advanced tab panel. This is a disabled tab panel. ``` ```jsx:react import { SlTab, SlTabGroup, SlTabPanel } from '@shoelace-style/shoelace/dist/react'; const App = () => ( General Custom Advanced Disabled This is the general tab panel. This is the custom tab panel. This is the advanced tab panel. This is a disabled tab panel. ); ``` :::tip Additional demonstrations can be found in the [tab group examples](/components/tab-group). :::