next.js/test/e2e/app-dir/css-order/app/interleaved/a/page.tsx
page.tsx20 lines433 B
import style0 from '../style0.module.css'
import style1 from '../style1.module.css'
import style2 from '../style2.module.css'
import style3 from '../style3.module.css'
import Nav from '../../nav'

export default function Page() {
  return (
    <div>
      <p
        className={`${style0.name} ${style1.name} ${style2.name} ${style3.name}`}
        id="helloia"
      >
        hello world
      </p>
      <Nav />
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN