next.js / test /production /dynamic-css-client-navigation /src /pages /nodejs /next-dynamic-ssr-false.tsx
| import React from 'react' | |
| import dynamic from 'next/dynamic' | |
| const NextDynamicRedButton = dynamic( | |
| () => | |
| import('../../components/red-button').then((module) => module.RedButton), | |
| { ssr: false } | |
| ) | |
| export default function NextDynamic() { | |
| return <NextDynamicRedButton /> | |
| } | |