export function roundToTwoDecimals(n: number) {
  return Math.round(n * 100) / 100;
}
