next.js/test/e2e/app-dir/rsc-basic/components/client.js
client.js10 lines222 B
'use client'

import { useState } from 'react'

export default function Client() {
  // To ensure that this component is rendered as a client component, we use a
  // state here.
  return useState('client_component')[0]
}
Quest for Codev2.0.0
/
SIGN IN