import React from 'react'; import { Button, Space } from 'antd'; const App: React.FC = () => ( {new Array(20).fill(null).map((_, index) => ( // eslint-disable-next-line react/no-array-index-key ))} ); export default App;