import React from 'react'; import styles from './index.module.less'; interface IProps { title?: string; } const Cell: React.FC = (props) => { const { title = '判断', ...rest } = props; const z = (n: any) => n * 1.2; return (
{title}
); }; export default Cell;