import React from 'react'; export interface TabContentProps { children: any; [x: string]: any; } export const TabContent: React.FC = (props) => { const { children, otherProps } = props; return (
{children}
); };