A Simple "Use Client" Rendered Page

This page is set up to be rendered with simple SSR, the same as the simple SSR page, except the 'use client' directive has been added.

"use client"; 
 
export const revalidate = 0; 
export default function page({}) { 
    return <div> 
        The content of this page 
    </div>; 
} 


Check it out in the devtools.

These pages are discussed here.
Back
5