Hello.
https://github.com/Industrial/test-next-keystone/blob/main/app/admin/page.tsx
Here you can see a route on which I want to render a component only on the client side and not the server side. What I want to render is https://marmelab.com/react-admin/ which is client side only and cannot be server side rendered.
As you can see, if isClient is false then I just render a div. This should happen in SSR and once in the browser, after which the effect should run and it should render the <Application /> component. It does not.
Help! 
