Every yellow flash is a re-render. Interact with the demo, spot what shouldn't be flashing, then open the solution tab to see the fix.
Exercise 1 of 1
Draft state in the root causes NoteList to flash on every keystroke — move it into CreateNote.
CreateNote renders: 1
NoteList renders: 1
Type in the input. NoteList flashes on every keystroke — it re-renders because App re-renders, even though NoteList doesn't use draft at all.