Skip to content

cednore/award-calculation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Award Calculation Program

Renders Transaction / Award Table for given mock JSON response

const mockTransactions = [
  {
    customerId: "Jason",
    transactions: [
      { month: "January", amount: 120 },
      { month: "February", amount: 80 },
      { month: "March", amount: 150 }
    ]
  },
  {
    customerId: "John",
    transactions: [
      { month: "January", amount: 60 },
      { month: "February", amount: 70 },
      { month: "March", amount: 90 }
    ]
  },
  {
    customerId: "Jack",
    transactions: [
      { month: "January", amount: 110 },
      { month: "February", amount: 130 },
      { month: "March", amount: 140 }
    ]
  }
];

Releases

No releases published

Packages

No packages published