import { Suspense } from 'react' import { connection } from 'next/server' import { RenderCounterClient } from './client' async function DynamicRenderCounter(): Promise { // Renders a count of the number of times the client receives new dynamic data // from the server. The count is computed on the client and stored in React // state, so it gets reset if the state of the tree is reset. await connection() const uuid = crypto.randomUUID() return } export default function DashboardNavbarLandingPage() { return (

Navbar

Loading...
}>

Navbar dynamic render counter:{' '}

) }