import React from 'react'; export interface ICardBody { className?: string; style?: React.CSSProperties; [x: string]: any; } export const CardBody: React.FC = (props) => { const { children, className = '', style, ...otherProps } = props; return (
{children}
); };