next.js/test/integration/css-fixtures/csp-style-src-nonce/pages/other.js
other.js17 lines298 B
import Link from 'next/link'
import css from './other.module.css'

export default function Other() {
  return (
    <main>
      <Link href="/" id="link-index">
        index page
      </Link>
      <br />
      <h1 id="blue-title" className={css.blue}>
        Blue
      </h1>
    </main>
  )
}
Quest for Codev2.0.0
/
SIGN IN