rsnext/test/integration/react-streaming-and-server-components/app/components/bar.server.js
Shu Ding 0fa233b727
Fix client component imports are not being correctly tracked (#30853)
* ensure client components are correctly tracked in the client compilation

* fix test
2021-11-02 21:14:14 -05:00

9 lines
131 B
JavaScript

import Foo from './foo.client'
export default function Bar() {
return (
<div>
bar.server.js: <Foo />
</div>
)
}