fix(curriculum): update description on step 16 music player (#53773)

This commit is contained in:
Arunkumar S
2024-02-18 02:04:03 +05:30
committed by GitHub
parent e658ad6f61
commit 3cf229c1a1

View File

@@ -7,7 +7,11 @@ dashedName: step-16
# --description--
Inside the `button`, create two more `span` elements. The first span element should have class `playlist-song-artist` and interpolate `song.artist`. The second span element should have class `playlist-song-duration` and interpolate `song.duration`.
Inside the `button` element, create two more `span` elements.
The first `span` element should have a `class` of `playlist-song-artist`. In between the `span` tags, add `${song.artist}`.
The second `span` element should have a `class` of `playlist-song-duration`. In between the `span` tags, add `${song.duration}`.
# --hints--