import React from "react"; import styles from "./index.less"; import { Carousel, Radio } from "antd"; class PositionCarouselDemo extends React.Component { state = { dotPosition: "top" }; handlePositionChange = ({ target: { value: dotPosition } }) => this.setState({ dotPosition }); render() { const { dotPosition } = this.state; return (
Top Bottom Left Right

1

2

3

4

); } } export default () => (
);