Search posts, tags, users, and pages
Chris Bongers
Looking to get into development? As a full-stack developer I guide you on this journey and give you bite sized tips every single day ๐
Creating pages is an integral part of any framework. Today we'll be looking at three different types of pages that we can leverage in Next.js. Static pages (/about, /contact) Dynamic page content (/posts/all) Dynamic page paths (/posts/1, posts/2) ...
Usman Sabuwala
Learning web development, running a YouTube channel
This seems like a great feature Chris! Btw, while mapping through the shows, you set the key to a string.
shows
key
It should be key={show.id}
key={show.id}
You are completely right there Usman! Mistake on my side ๐
Usman Sabuwala
Learning web development, running a YouTube channel
This seems like a great feature Chris! Btw, while mapping through the
shows, you set thekeyto a string.It should be
key={show.id}