Feat/visit command improvements#69
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request adds a new "Marvel Shows" page to the example app, which fetches and displays TV show data from the TVMaze API using Axios. It also introduces a new test for this page and updates project dependencies accordingly.
Feature: Load and Display Marvel Shows
LoadShowspage (src/pages/LoadShows.tsx) that fetches Marvel-related TV shows from the TVMaze API using Axios, handles loading and error states, and displays the results in a responsive grid with show details./showsroute insrc/routes.tsxto render the newLoadShowspage and added a fallback 404 route. [1] [2]Dependencies
axiosas a project dependency in bothpackage.jsonandpackage-lock.json, along with all its transitive dependencies (such asfollow-redirects,form-data, etc.). [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14]Testing
src/twd-tests/load-shows.twd.test.ts) to verify that the shows page loads correctly and displays the expected number of show cards, using a mock API response.Minor Improvements
src/main.tsxby removing the.tsextension for compatibility.src/routes.tstosrc/routes.tsxto support JSX in route definitions. [1] [2]This closes #68