ant-design/components/carousel/demo/basic.md

24 lines
343 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title: 基本
---
2015-08-03 14:52:26 +08:00
最简单的用法。
````jsx
import { Carousel } from 'antd';
2015-08-03 14:52:26 +08:00
function onChange(a, b, c) {
console.log(a, b, c);
}
2015-10-20 16:47:55 +08:00
ReactDOM.render(
<Carousel afterChange={onChange}>
2015-08-03 14:52:26 +08:00
<div><h3>1</h3></div>
<div><h3>2</h3></div>
<div><h3>3</h3></div>
<div><h3>4</h3></div>
</Carousel>
, mountNode);
2015-08-03 14:52:26 +08:00
````