Up to this point, we have been rendering the CurrentMonthExpenses and ExpenseRow components without a category as one did not exist previously. Let's update them with the following goals in mind:
- CurrentMonthExpenses should access each item's category and pass it to ExpenseRow
- ExpenseRow should render the appropriate category's assigned icon in the row of expenses so that our users can quickly visualize what it is that they spent part of their budget on
- We should use the resetAsyncStorage method created in StorageMethods to clear any current list of expenses before modifying ExpenseRow so that the previous expenses without a category assigned will not cause any issues
Once you have updated ...