mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
28 lines
457 B
TypeScript
28 lines
457 B
TypeScript
|
import React from 'react';
|
||
|
import { Steps } from 'antd';
|
||
|
|
||
|
const description = 'This is a description.';
|
||
|
const App: React.FC = () => (
|
||
|
<Steps
|
||
|
current={1}
|
||
|
percent={60}
|
||
|
items={[
|
||
|
{
|
||
|
title: 'Finished',
|
||
|
description,
|
||
|
},
|
||
|
{
|
||
|
title: 'In Progress',
|
||
|
subTitle: 'Left 00:00:08',
|
||
|
description,
|
||
|
},
|
||
|
{
|
||
|
title: 'Waiting',
|
||
|
description,
|
||
|
},
|
||
|
]}
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default App;
|