next.js/test/production/dynamic-css-client-navigation/src/pages/nodejs/index.tsx
index.tsx18 lines491 B
import React from 'react'
import Link from 'next/link'
import { RedButton } from '../../components/red-button'

export default function Home() {
  return (
    <>
      {/* To reproduce, RedButton should be imported. */}
      <RedButton />
      <Link href="/nodejs/next-dynamic">/nodejs/next-dynamic</Link>
      <Link href="/nodejs/next-dynamic-ssr-false">
        /nodejs/next-dynamic-ssr-false
      </Link>
      <Link href="/nodejs/react-lazy">/nodejs/react-lazy</Link>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN