const handleClickLatino = () => {
const text = textAreaLatinoRef?.current?.value;
if (text) {
const notify = () => toast.success("Traduzione in corso...");
notify();
console.log(doTraduzioneLatino(text));
} else {
const notify = () => toast.error("Inserisci un testo!");
notify();
}
}