How to properly pass data fetched with Drizzle ORM in Next.js 14 from a server component to a nested client component?
I’m currently working on a project using Next.js 14 and Drizzle ORM. I have a server component (page.tsx) where I fetch data using Drizzle ORM and pass it down to a client component (tabs.tsx), which then passes it further down to another child component (services.tsx).