export const formatNumber = (val) => { if(val || [0,'0'].includes(val)) { return val }else {return '-'} }