next.js / test /development /acceptance-app /fixtures /hydration-errors /app /(default) /extra-element-server /page.tsx
| 'use client' | |
| const isServer = typeof window === 'undefined' | |
| export default function Mismatch() { | |
| return <div className="parent">{isServer && <main className="only" />}</div> | |
| } | |