const roundToTwoDecimals = (val: number) => Math.round(val * 100) / 100;
export default roundToTwoDecimals;
