I have a simple app I want to rebuild in T3, and curious what approach would work well, I haven't used React/TRPC so don't want to work again the tools.
It's a simple reading list, books grouped by month, and within each month ordered by the date the book is marked as read.
I have a few ideas:
1. One call, get all the data, group it in the front end
1. One call, get all the data ordered but flat, and group it in the front end
2. Each MonthView component does a call for it's own data
Would any of these be a good idea, or maybe something else completely?