--- order: 0 title: zh-CN: 基本 en-US: Basic --- ## zh-CN 最简单的用法。 ## en-US Basic usage. ```tsx import { Carousel } from 'antd'; import React from 'react'; const contentStyle: React.CSSProperties = { height: '160px', color: '#fff', lineHeight: '160px', textAlign: 'center', background: '#364d79', }; const App: React.FC = () => { const onChange = (currentSlide: number) => { console.log(currentSlide); }; return (

1

2

3

4

); }; export default App; ```