Time: 0331
Fiber is Always There:
React’s Fiber architecture is the engine behind rendering improvements—it’s not something you “turn on” separately.
Concurrent Mode and Suspense Are Opt-In:
These features are built on Fiber and need to be enabled or used explicitly. They simplify handling asynchronous operations by allowing React to wait (suspend) rendering until data is ready, and they let you mark updates with different priorities.
Transition from Manual to Declarative Loading:
Before these features, you managed loading states and errors manually. With Suspense, you delegate that responsibility to a boundary that automatically displays fallback UI, making your code cleaner and more robust.