UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

17 lines (16 loc) 527 B
import React from 'react'; export interface TabBodyProps { /** The tab container body to render Tab children into. */ tabContainerBodyId: string; /** Sets if the tab is the currently active tab or not. */ active?: boolean; /** Children passed to tab body (tab content) */ children?: React.ReactNode; } declare class TabBody extends React.Component<TabBodyProps> { constructor(props: any); componentDidMount(): void; componentWillUnmount(): void; render(): any; } export default TabBody;