A Simple Server-Side Rendered Page

This page is rendered with simple SSR. It doesn't do any server-side processing, but is a server-side component. This page is the same, but with the 'use client' directive added.

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