- Create a component to display all blogs using
GET /blogs - Use TanStack Query for data fetching
- Handle loading and error states
- Implement single blog view using
GET /blogs/:id - Use TanStack Query for data fetching
- Build a form to create a new blog using
POST /blogs - Invalidate queries after successful creation
...