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 (