We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e50e15 commit 2e199b7Copy full SHA for 2e199b7
2 files changed
.gitignore
@@ -9,6 +9,7 @@
9
/.dioxus
10
/target
11
.DS_Store
12
+._*
13
14
.vscode/*
15
!.vscode/settings.json
packages/docs-router/src/doc_examples/asynchronous.rs
@@ -330,8 +330,12 @@ pub fn CancelSafe() -> Element {
330
331
pub fn UseResourceDemo() -> Element {
332
rsx! {
333
- ComponentWithLogs {
334
- UseResourceMemo {}
+ // This renders differently based on the number of times we render the component
+ // which may be different on the client and server so we skip hydration
335
+ ClientOnly {
336
+ ComponentWithLogs {
337
+ UseResourceMemo {}
338
+ }
339
}
340
341
0 commit comments