We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07b18dc commit 551ef9dCopy full SHA for 551ef9d
client-only-components/app/routes/index.tsx
@@ -8,11 +8,11 @@ export default function Screen() {
8
return (
9
<>
10
<ClientOnly fallback={<p>Loading...</p>}>
11
- <BrokenOnTheServer />
+ {() => <BrokenOnTheServer />}
12
</ClientOnly>
13
14
15
- <ComplexComponent />
+ {() => <ComplexComponent />}
16
17
18
<button
0 commit comments