import React, { useState } from 'react'; import type { CarouselProps, RadioChangeEvent } from 'antd'; import { Carousel, Radio } from 'antd'; type DotPosition = CarouselProps['dotPosition']; const contentStyle: React.CSSProperties = { height: '160px', color: '#fff', lineHeight: '160px', textAlign: 'center', background: '#364d79', }; const App: React.FC = () => { const [dotPosition, setDotPosition] = useState('top'); const handlePositionChange = ({ target: { value } }: RadioChangeEvent) => { setDotPosition(value); }; return ( <> Top Bottom Left Right

1

2

3

4

); }; export default App;