export function maxValue(values) {
// implementar logica aqui
if (values.length) {
return Math.max(...values)
}
return 0