export function getData(): any[] {
  return [
    {
      month: "Jan",
      revenue: 155,
      profit: 33,
    },
    {
      month: "Feb",
      revenue: 123,
      profit: 35.5,
    },
    {
      month: "Mar",
      revenue: 172.5,
      profit: 41,
    },
    {
      month: "Apr",
      revenue: 94,
      profit: 29,
    },
    {
      month: "May",
      revenue: 112.5,
      profit: 37,
    },
    {
      month: "Jun",
      revenue: 148,
      profit: 41.5,
    },
  ];
}
