Search⌘ K
AI Features

Demo Application

Explore how to create a functional React application integrating the Deezer API. Understand the app’s workflow, including navigation, search, favorites, playlists, and detailed views of tracks, albums, artists, and podcasts.

We'll cover the following...

We gained hands-on experience with the Deezer API endpoints in the previous chapters. Let’s go over the workflow of our functional application.

Workflow

  1. When we run the application, the first page we see is the homepage. The homepage has two main components:

    • Navigation Bar: This contains the search bar, favorites button, playlist button, and login button.
    • Flashcards: There are different flashcards to display top tracks, albums, artists,
...
Ask