next.js/test/e2e/app-dir/css-modules-rsc-postcss/app/page.tsx
page.tsx12 lines255 B
import styles from './page.module.css'
import other from './other.module.scss'

export default function Page() {
  return (
    <div>
      <p className={styles.main}>hello world</p>
      <span className={other.other}>hello world</span>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN