ant-design/components/select/demo/debug-flip-shift.tsx

15 lines
272 B
TypeScript
Raw Normal View History

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;