import ArrowLeftPH from "@/components/icons/ArrowLeftPH";
import { Button } from "@mui/material";
function Menu({ value, open, setOpen, listTab, handleChange }) {
return (
{listTab.map((item, idx) => (
-
{listTab.length > idx + 1 && (
)}
))}
);
}
export default Menu;