next.js/test/e2e/app-dir/css-modules-data-urls/app/page.tsx
page.tsx15 lines316 B
// @ts-expect-error
import styles from 'data:text/css+module,.home{font-weight:700}'
import { ClientComponent } from './client'

export default function Home() {
  return (
    <>
      <div id="rsc" className={`${styles.home}`}>
        This text should be bold
      </div>
      <ClientComponent />
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN