mue/src/components/modals/welcome/ProgressBar.jsx

21 lines
474 B
JavaScript

import { memo } from 'react';
function ProgressBar({ count, currentTab, switchTab }) {
return (
<div className="progressbar">
{count.map((num) => {
let className = 'step';
const index = count.indexOf(num);
if (index === currentTab) {
className = 'step active';
}
return <div className={className} key={index} onClick={() => switchTab(index)} />;
})}
</div>
);
}
export default memo(ProgressBar);