Here\'s a bit of code, within a react component class (scaffolded using CRA 2)
click = () => {
console.log(this, \"hello\");
let x = 1 + 1; //T
An pragmatic alternative - if what you're wanting to do is inspect the state/props of a react component at a certain point, is to enter the break point as per normal - but instead of using the debugger to inspect the state - use the react dev tools plugin to actually examine the state.
This might prove to be a bit fiddly, but it's an option.