import React from 'react'; import type { StepsProps } from 'antd'; import { Steps, List, Avatar } from 'antd'; const data = [ { title: 'Ant Design Title 1', current: 0, }, { title: 'Ant Design Title 2', current: 1, status: 'error', }, { title: 'Ant Design Title 3', current: 2, }, { title: 'Ant Design Title 4', current: 1, }, ]; const items = [ { title: 'Step 1', description: 'This is a Step 1.', }, { title: 'Step 2', description: 'This is a Step 2.', }, { title: 'Step 3', description: 'This is a Step 3.', }, ]; const App: React.FC = () => (
( } title={{item.title}} description="Ant Design, a design language for background applications, is refined by Ant UED Team" /> )} />
); export default App;