Hi,
I am currently stuck at point 34.(1) After following the solution’s video, the DOM in local host can not be shown(2).
(1)
(2)
I have rechecked the codes several times,
I would appreciate for the assistance.
Niko
Hi,
I am currently stuck at point 34.(1) After following the solution’s video, the DOM in local host can not be shown(2).
(1)
(2)
I have rechecked the codes several times,
I would appreciate for the assistance.
Niko
please place the actual code as text not an image, use ctrl+F when highlighted to preformat it.
after adding the following code in the component TrackList, the issue appears.
<div className="TrackList">
{
this.props.tracks.map(track => {
return <Track track={track} key={track.id} />
})
}
</div>
Do I need to follow the troubleshooting instruction as the message in the local host stated? If yes, why this problem just appears after writting the above codes
Hi, thanks for the respond. I have finally found the bug in playlist.js that I imported tracklist component which has not been attributed.
This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.