Ensure your react components have a function name so they show up in devtools
// has no name
const Comp = forwardRef(() => {})
export default Comp
// has a name
const Comp = () => {}
export default forwardRef(Comp)
// also has a name
export default forwardRef(function Comp() {})