import React from "react"; import ArrowForwardIcon from "@mui/icons-material/ArrowForward"; import ArrowBackIcon from "@mui/icons-material/ArrowBack"; import IconButton from "@mui/material/IconButton"; import { Stack } from "@mui/system"; export function Buttons(indiceCorrente, cambiaindiceCorrente, messaggi) { return ( {indiceCorrente > 0 && ( cambiaindiceCorrente(indiceCorrente - 1)}> )} {indiceCorrente < messaggi.length - 1 && ( cambiaindiceCorrente(indiceCorrente + 1)}> )} ); }