All Tasks
Fixintermediate
35 min

Fix a Slow React Component

You're given a slow `DataTable` component that re-renders every row whenever any single cell changes. Users are complaining it lags on large datasets. Your job: identify the bottleneck using React DevTools Profiler, then fix it with `memo`, `useCallback`, and `useMemo` without changing what the component does.

Your progress0%

Requirements

Skills you'll use

ReactPerformancememouseCallback

Read this first

This task is based on the lesson below. Complete the reading before attempting it.

Go to lesson

What to expect

Difficulty
intermediate
Time
35 min
Steps
6
Type
Fix