You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My log with all suspense import in home component:
navBar - Wrap
Component for Intersection
ref {current: undefined}
inView false
Intersect Wrap
navBar - FirstLine
ref {current: div}
inView true
Intersect Wrap
navBar - SecondLine
navBar - ThirdLine
Advertise - Component
News - Component
My log with one suspense import for Intersect component, other Advertise and News without suspense import:
navBar - Wrap
Component for Intersection
Advertise - Component
News - Component
ref {current: undefined}
inView false
Intersect Wrap
navBar - FirstLine
navBar - SecondLine
navBar - ThirdLine
Why in that case I see always first load intersect hook? it's because of useEffect in observer hook ?
My Intersect wrap have default export, how as a separate component.
The text was updated successfully, but these errors were encountered:
I have a question about component loading logging.
My test scene have simple route and few components:
My log with all suspense import in home component:
navBar - Wrap
Component for Intersection
ref {current: undefined}
inView false
Intersect Wrap
navBar - FirstLine
ref {current: div}
inView true
Intersect Wrap
navBar - SecondLine
navBar - ThirdLine
Advertise - Component
News - Component
My log with one suspense import for Intersect component, other Advertise and News without suspense import:
navBar - Wrap
Component for Intersection
Advertise - Component
News - Component
ref {current: undefined}
inView false
Intersect Wrap
navBar - FirstLine
navBar - SecondLine
navBar - ThirdLine
Why in that case I see always first load intersect hook? it's because of useEffect in observer hook ?
My Intersect wrap have default export, how as a separate component.
The text was updated successfully, but these errors were encountered: