Hello, I'm trying to disable ssr of my layout because I need it to be purely on the client.
export const DashboardLayout = dynamic(() => Promise.resolve(DashboardLayoutBase), {
ssr: false,
});
So I'm disabling SSR like this.
My question is DashboardLayoutBase accepts children and since this is on the layout, my pages are RSC. Will ssr be disabled on the DashboardLayoutBase's children too even if it would accept client components down the line?