Spent a lot of time debugging this.
I was using react color library from NPM in a project and my project was in ES module scope.
Problem
import reactColor from "react-color";
TypeError: Cannot read properties of undefined (reading 'displayName')
Fix
import * as reactColor from "react-color";
const { SketchPicker } = reactColor;
Top comments (0)