Web / ReactJS Interview questions
What is React Fiber?
React Fiber is the reimplementation of React's core algorithm. The goal of React Fiber is to increase its suitability for areas like animation, layout, and gestures. Its headline feature is incremental rendering: the ability to split rendering work into chunks and spread it out over multiple frames.
Fiber is the new reconciliation engine in React 16.
More Related questions...