Why react class const is not allowed ? if i am assigning template_counter and return in render method getting error : SyntaxError: src/index.js: Unexpected token . I am using babel-cli@6.24.1 to convert this react code.
class Counter extends React.Component{
const template_counter = (<div><h1>Counter Component</h1><p>count : 0 </p></div>);
render(){
return this.template_counter;
}
}