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

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