next.js/test/e2e/app-dir/css-chunking/app/other/page.tsx
page.tsx11 lines264 B
import InnerWrapper from '../../components/inner-wrapper'
import styles from './otherPage.module.css'

export default async function OtherPage() {
  return (
    <InnerWrapper>
      <h1 className={styles.otherPage}>Other Page Title</h1>
    </InnerWrapper>
  )
}
Quest for Codev2.0.0
/
SIGN IN