rsnext/test/e2e/app-dir/rsc-basic/components/cjs-client.js
Jiachi Liu 2b99db07f7
Client component directive: use client (#41333)
Replace `'client'` with `'use client'` as client directive for client
components in RSC

x-ref: [slack
thread](https://vercel.slack.com/archives/C035J346QQL/p1665435520907559)

Co-authored-by: JJ Kasper <jj@jjsweb.site>
2022-10-11 10:26:45 -07:00

5 lines
69 B
JavaScript

'use client'
exports.Cjs = function Cjs() {
return 'cjs-client'
}