import React from 'react' import _ from 'lodash' import '@/assets/css/components/common/indicator.scss' interface IndicatorProps { total: number current: number onSwitch?: (index: number) => void } const Indicator: React.FC = (props) => { const { total, current, onSwitch } = props const handleClick = (index: number) => { return () => { onSwitch && onSwitch(index) } } return ( <> ) } export default Indicator