Skip to content

Instantly share code, notes, and snippets.

@itsMapleLeaf
Created August 13, 2021 15:49
Show Gist options
  • Save itsMapleLeaf/d9dd0b78309b6543f91d80085734b748 to your computer and use it in GitHub Desktop.
Save itsMapleLeaf/d9dd0b78309b6543f91d80085734b748 to your computer and use it in GitHub Desktop.

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() {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment