import { RightOutlined } from '@ant-design/icons'; import SubTitle from '../components/SubTitle'; import styles from './PredictionAnalysis.less'; const UFList = [ { label: '超滤模组A (UF-4001A)' }, { label: '超滤模组A (UF-4001B)' }, { label: '超滤模组A (UF-4001C)' }, { label: '超滤模组A (UF-4001D)' }, ]; const PredictionAnalysis = () => { return ( <>
{UFList.map((item, index) => { return (
{ console.log(index); }} >
{item.label}
预测分析
); })}
); }; export default PredictionAnalysis;