Is the only real option to pass in the data from a server component? Because this is getting tricky.
I'm making a select component that takes in an items array. The data I want to pass into this prop comes from my drizzle-orm instance which needs an await call. This might be a really dumbass question but RSC in NextJS has spoiled me to the point where I forgot how to do this.
I remember being able to do stuff like db.findFoo().then(() => do-something()) but don't really know how to wait for that promise without using await.
