You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
272 B

import { Select } from 'antd';
import React from 'react';
const App: React.FC = () => (
<Select
style={{ width: 120, marginTop: '50vh' }}
open
options={new Array(100).fill(null).map((_, index) => ({
value: index,
}))}
/>
);
export default App;