import React from 'react'; import { Col, Row } from 'antd'; const App: React.FC = () => ( {new Array(10).fill(0).map((_, index) => { const key = `col-${index}`; return ( Col ); })} ); export default App;