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