Does anyone know of any good NextJS 13 + (any) UI lib Boilerplates? Like a Server Side Rendered Dashboard, with proper efficient data fetching examples.
I feel like I'm losing my mind, had server side dashboard with client components wrapped around server components that pass data through props, but now I wanna add an additional dropdown and filters to the client component so I'm re-building the server component as an api route? (so the client can re-fetch, via useEffect on filter change) Idk I just feel like I'm not seeing the full picture.
Like I can't find an example of best practice where the UI library is only supported on the client
I've looked and found lots of dashboard boilerplates but they all use NextJS 12- was wondering if anyone could share or shed some light on this.