diff --git a/apps/next-app-router-4000/app/context/context-click-counter.tsx b/apps/next-app-router-4000/app/context/context-click-counter.tsx index 0a36ee3aae..a59be8aeb2 100644 --- a/apps/next-app-router-4000/app/context/context-click-counter.tsx +++ b/apps/next-app-router-4000/app/context/context-click-counter.tsx @@ -3,6 +3,8 @@ import { useCounter } from './counter-context'; import React from 'react'; import { Boundary } from '#/ui/boundary'; +import dynamic from 'next/dynamic'; +const Button = dynamic(() => import('remote_4001/Button'), { ssr: true }); const ContextClickCounter = () => { const [count, setCount] = useCounter(); @@ -14,6 +16,7 @@ const ContextClickCounter = () => { size="small" animateRerendering={false} > +