Spaces:
Sleeping
Sleeping
| 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" | |
| } | |
| ] | |
| } | |