Hey,
I just switched to Next.js 14 and its server components. Need some tips on pulling data the right way. I’ve got this page listing all my data entries in a table. Now, I want to make it so that when you click on any entry, it grabs the ID and takes you to a new page showing more about it. It'll hit my API with that ID to get the details.
Im not sure if I need to create a dynamic page [id].tsx, Pass the id as a route param to my /details page.tsx, or use some weird server component that will get my data magically.
Any advice on this would be great. Sick to death of banging my head against the wall with these silly server components