export function getData() {
  return [
    {
      month: "Jan",
      temp: 5.5,
    },
    {
      month: "Feb",
      temp: 6.1,
    },
    {
      month: "Mar",
      temp: 7.4,
    },
    {
      month: "Apr",
      temp: 9.2,
    },
    {
      month: "May",
      temp: 13.3,
    },
    {
      month: "Jun",
      temp: 15.5,
    },
    {
      month: "Jul",
      temp: 18.5,
    },
    {
      month: "Aug",
      temp: 18.4,
    },
    {
      month: "Sep",
      temp: 14.5,
    },
    {
      month: "Oct",
      temp: 12.1,
    },
    {
      month: "Nov",
      temp: 8.4,
    },
    {
      month: "Dec",
      temp: 3.6,
    },
  ];
}
