next.js/test/integration/css-fixtures/composes-ordering/pages/index.js
index.js17 lines318 B
import Link from 'next/link'
import css from './index.module.css'

export default function Home() {
  return (
    <main>
      <Link href="/other" prefetch={false} id="link-other">
        other
      </Link>
      <br />
      <h1 id="black-title" className={css.header}>
        Black
      </h1>
    </main>
  )
}
Quest for Codev2.0.0
/
SIGN IN