Books List
Explore more about designing the book view that includes column-wise sorting of books.
Now that we have a way to call our REST API, let’s have a look at the view component of the application that will display all of the books in our database as a formatted list. Doing that will require several aspects:
Container component
├── Title bar
│ ├── Title
│ └── Close button
├── Table component
│ ├── Column headings
│ └──
...