skip to Main Content

Reactjs – I'm not able to find the missing semicolon in the following code can anyone please help me out for this?

due to missing semicolon render method I'm not able get desired output render () { return ( <div className="frame"> <CalculatorTitle value="My Calculator" /> <div className="mainCalc"> <OutputScreen question={this.state.question} answer={this.state.answer} /> <div className="button-row"> <Button label={"Clear"} handleClick={this.handleClick} /> <Button label={"Delete"} handleClick={this.handleClick} /> <Button…

VIEW QUESTION
Back To Top
Search