Erro missing semicolon
Parsing error: Missing semicolon.
10 | }
11 | }
> 12 | render(){
| ^
13 | return(
14 | <button className=''Celula''>
15 | {this.props.valor}
Como consigo resolver esse erro no código:
import React from ''react''
import ''./Celula.css''
export default class Celula extends React.Componenet{
constructor(props){
super(props)
this.state = {}
}
}
render(){
return(
<button className=''Celula''>
{this.props.valor}
</button>
)
}
10 | }
11 | }
> 12 | render(){
| ^
13 | return(
14 | <button className=''Celula''>
15 | {this.props.valor}
Como consigo resolver esse erro no código:
import React from ''react''
import ''./Celula.css''
export default class Celula extends React.Componenet{
constructor(props){
super(props)
this.state = {}
}
}
render(){
return(
<button className=''Celula''>
{this.props.valor}
</button>
)
}
Letícia Silva
Curtidas 0