import { Box, Tab, Tabs as TabsMUI } from "@mui/material"; function a11yProps(index) { return { id: `simple-tab-${index}`, "aria-controls": `simple-tabpanel-${index}`, }; } function Tabs({ value, handleChange, listTab, inactives, isSm, style }) { return ( {listTab.map((item, idx) => ( ))} ); } export default Tabs;