AI-Funding / AI_Funding_FE

0 stars 4 forks source link

수익 비교 탭 수정 #101

Closed chb09876 closed 2 years ago

chb09876 commented 2 years ago

아래의 데이터에 맞춰 동작하도록 수정함

{
    accounts: [
      {
        aiType: 1,
        nickname: "blueblue",
        accountNumber: "1234",
        profits: [
          {
            date: "2021-09-09",
            profit: 1,
          },
          {
            date: "2021-09-10",
            profit: 2,
          },
          {
            date: "2021-09-11",
            profit: 10,
          },
          {
            date: "2021-09-12",
            profit: -9,
          },
        ],
      },
      {
        aiType: 2,
        nickname: "pinkpink",
        accountNumber: "123123",
        profits: [
          {
            date: "2021-09-11",
            profit: 7,
          },
          {
            date: "2021-09-12",
            profit: -3,
          },
        ],
      },
    ],
  }