DEV Community

Discussion on: Be careful with console.log when using React.StrictMode

Collapse
 
yuns profile image
Yuns • Edited

Workaround is to use let log = console.log; and then print by log function. demo codesandbox.io/s/console-log-in-re...