ant-design/components/timeline/demo/right.md
MadCcc 6776bb8916
docs: demo support react18 (#34843)
* docs: update demo

* chore: add script

* test: fix demo test

* docs: convert demos

* chore: move script

* test: remove react-dom import

* chore: update deps

* docs: update riddle js

* test: fix image test

* docs: fix riddle demo
2022-04-03 23:27:45 +08:00

31 lines
703 B
Markdown

---
order: 4
title:
zh-CN: 右侧时间轴点
en-US: Right alternate
---
## zh-CN
时间轴点可以在内容的右边。
## en-US
Right alternate timeline.
```jsx
import { Timeline } from 'antd';
import { ClockCircleOutlined } from '@ant-design/icons';
export default () => (
<Timeline mode="right">
<Timeline.Item>Create a services site 2015-09-01</Timeline.Item>
<Timeline.Item>Solve initial network problems 2015-09-01</Timeline.Item>
<Timeline.Item dot={<ClockCircleOutlined style={{ fontSize: '16px' }} />} color="red">
Technical testing 2015-09-01
</Timeline.Item>
<Timeline.Item>Network problems being solved 2015-09-01</Timeline.Item>
</Timeline>
);
```