Server side fetching and auth strategies
Is there any benefit in fetching on the backend and passing to client components, I "think" it's supposed to be faster right?
What I'm doing:
Server component checks auth with clerk's
useAuth hool, then preloads the data using convex's preloadQuery, passes it to a client component that uses usePreloadedQuery & using the loading.tsx files in next to display a loader. Is this a good approach?
