File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ use tachys::{
32
32
} ;
33
33
use throw_error:: ErrorHookFuture ;
34
34
35
- /// If any [`Resource`](leptos_reactive ::Resource) is read in the `children` of this
35
+ /// If any [`Resource`](crate::prelude ::Resource) is read in the `children` of this
36
36
/// component, it will show the `fallback` while they are loading. Once all are resolved,
37
37
/// it will render the `children`.
38
38
///
39
39
/// Each time one of the resources is loading again, it will fall back. To keep the current
40
- /// children instead, use [Transition](crate::Transition).
40
+ /// children instead, use [Transition](crate::prelude:: Transition).
41
41
///
42
42
/// Note that the `children` will be rendered initially (in order to capture the fact that
43
43
/// those resources are read under the suspense), so you cannot assume that resources read
Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ use reactive_graph::{
16
16
use slotmap:: { DefaultKey , SlotMap } ;
17
17
use tachys:: reactive_graph:: OwnedView ;
18
18
19
- /// If any [`Resource`](leptos_reactive ::Resource) is read in the `children` of this
19
+ /// If any [`Resource`](crate::prelude ::Resource) is read in the `children` of this
20
20
/// component, it will show the `fallback` while they are loading. Once all are resolved,
21
21
/// it will render the `children`.
22
22
///
23
- /// Unlike [`Suspense`](crate::Suspense), this will not fall
23
+ /// Unlike [`Suspense`](crate::prelude:: Suspense), this will not fall
24
24
/// back to the `fallback` state if there are further changes after the initial load.
25
25
///
26
26
/// Note that the `children` will be rendered initially (in order to capture the fact that
You can’t perform that action at this time.
0 commit comments