next.js/test/e2e/app-dir/rsc-basic/app/css-modules/page.js
page.js11 lines250 B
// CSS modules can only be imported inside client components for now.
import RedText from '../../components/red/index'

export default function CSSM() {
  return (
    <RedText id="red-text">
      <h1>This should be in red</h1>
    </RedText>
  )
}
Quest for Codev2.0.0
/
SIGN IN