Spaces:
Sleeping
Sleeping
File size: 1,722 Bytes
ecf35ed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
export const data = {
"transactions": [
{
"transaction_date": "2021-01-01",
"category": "Food",
"name_description": "McDonalds",
"amount": 10.00,
"type": "Debit"
},
{
"transaction_date": "2021-01-02",
"category": "Transport",
"name_description": "Uber",
"amount": 15.50,
"type": "Debit"
},
{
"transaction_date": "2021-01-03",
"category": "Entertainment",
"name_description": "Netflix",
"amount": 12.99,
"type": "Debit"
},
{
"transaction_date": "2021-01-04",
"category": "Groceries",
"name_description": "Walmart",
"amount": 45.23,
"type": "Debit"
},
{
"transaction_date": "2021-01-05",
"category": "Utilities",
"name_description": "Electricity Bill",
"amount": 75.00,
"type": "Debit"
},
{
"transaction_date": "2021-01-06",
"category": "Income",
"name_description": "Salary",
"amount": 2000.00,
"type": "Credit"
},
{
"transaction_date": "2021-01-07",
"category": "Health",
"name_description": "Pharmacy",
"amount": 20.00,
"type": "Debit"
},
{
"transaction_date": "2021-01-08",
"category": "Entertainment",
"name_description": "Movie Theater",
"amount": 25.00,
"type": "Debit"
},
{
"transaction_date": "2021-01-09",
"category": "Transport",
"name_description": "Gas Station",
"amount": 30.00,
"type": "Debit"
},
{
"transaction_date": "2021-01-10",
"category": "Food",
"name_description": "Starbucks",
"amount": 5.75,
"type": "Debit"
}
]
}
|