import React, { FC, memo } from 'react'; import { cn } from '../../util/bem'; export type TabsPanelPropsType = { children: React.ReactNode; tabPanelId: string; }; const className = cn('tabs-panel'); export const TabsPanel: FC = memo((props) => (
{ props.children }
));