import { jsx } from '@antv/f-engine'; import { deepMix } from '@antv/util'; export default (props) => { const { coord, records, animation, onClick } = props; const { center, startAngle, endAngle, radius } = coord; return ( {records.map((record) => { const { key, children } = record; return ( {children.map((item) => { const { key, xMin, xMax, yMin, yMax, color, shape } = item; return ( ); })} ); })} ); };