UNPKG

@atlaskit/tabs

Version:

Tabs are used to organize content by grouping similar information on the same page.

14 lines (13 loc) 444 B
import React from 'react'; import { type TabPanelProps } from '../types'; /** * __TabPanel__ * * A TabPanel houses the contents of a Tab. * * - [Examples](https://atlassian.design/components/tabs/examples) * - [Code](https://atlassian.design/components/tabs/code) * - [Usage](https://atlassian.design/components/tabs/usage) */ declare const TabPanel: ({ children, testId }: TabPanelProps) => React.JSX.Element; export default TabPanel;