Подскажите пожалуйста что тут не так ?
App.js
import React from 'react';
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
componentName: 'App'
}
}
handleCountIncrement = () => {
this.setState({ count: this.state.componentName});
}
render() {
return <h1>
This is the {{ componentName }} component
</h1>
}
}
export default App;