Created
June 23, 2015 23:11
-
-
Save battaile/9db0800cf54447c3e0a7 to your computer and use it in GitHub Desktop.
Should this be set to something else or removed since react-devtools has been depracated?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//react/src/renderers/dom/ReactDOMClient.js line 55 | |
// If we're in Chrome, look for the devtools marker and provide a download | |
// link if not installed. | |
if (navigator.userAgent.indexOf('Chrome') > -1) { | |
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined') { | |
console.debug( | |
'Download the React DevTools for a better development experience: ' + | |
'https://fb.me/react-devtools' | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment