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