import React from 'react'; import { Divider, Flex, Steps } from 'antd'; import type { StepsProps } from 'antd'; const items = [ { title: 'Finished', content: 'This is a content.', }, { title: 'In Progress', content: 'This is a content.', }, { title: 'Waiting', content: 'This is a content.', }, ]; const sharedProps: StepsProps = { type: 'dot', current: 1, items, }; const sharedVerticalProps = { ...sharedProps, orientation: 'vertical', style: { flex: 'auto', }, } as const; const App: React.FC = () => ( ); export default App;