import React from 'react' import PropTypes from 'prop-types' function Dot (props) { return ( ) } export default function IndicatorDots (props) { const wrapperStyle = { position: 'absolute', width: '100%', zIndex: '100', bottom: '0px', textAlign: 'center' } if (props.total < 2) { // Hide dots when there is only one dot. return
} else { return (