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.
Check it out in the devtools.
These pages are discussed here.
"use client";
export const revalidate = 0;
export default function page({}) {
return <div>
The content of this page
</div>;
}
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.
5