In this episode, we're taking care of a simple but important detail: making the list of boards in our board index actually clickable. Previously, we built out the board index, but none of the board names or cards were linked anywhere—kind of pointless if you want to navigate!
So, we're fixing that by turning each board display into a link that takes you to the specific board's page. We talk through a couple of different ways you might want to set this up—either wrapping the board display in an anchor tag or making it an anchor element directly. Then, we show how you'd hook up the route so that clicking on a board takes you to its show page with the correct data.
Once you do this, every board in your dashboard becomes clickable, making it super easy for users (and you!) to navigate to any board and view its details. It's a quick and straightforward improvement, but it seriously enhances the user experience.