rsnext/test/integration/react-streaming-and-server-components/app/components/client.client.js
Shu Ding 8ba2aec022
Fix flight loader for shared components (#34692)
* fix flight loader for shared components

* add tests

* fix condition
2022-02-28 16:00:28 +01:00

7 lines
208 B
JavaScript

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]
}