Question: create two buttons using the React import React from react; / / import logo from . / logo . svg ; import

create two buttons using the React import React from "react";
// import logo from "./logo.svg";
import "./App.css";
import Disney from "./examples/Disney";
class App extends React.Component {
state ={
currentUser: {
firstName: "Mickey",
lastName: "Mouse",
friends: [{ name: "Minnie" },{ name: "Pluto" }],
age: 80,
},
other: { prop: "Same" },
somethingElse: "Same",
};
// onItemClicked =(e)=>{
// e.stopPropagation();
// e.preventDefault();
// console.log("I was clicked", e.currentTarget);
// console.log("Here is state, this.state.zipCode");
// console.log("Here is state", this.state);
//}
componentDidMount(){
console.log("componentDidMount");
console.assert(this.state);
this.setState((prevState)=>{
let currentUser ={...prevState.currentUser };
currentUser.firstName = "Michael";
const newFriends =[...currentUser.friends, { name: "Googy" }];
currentUser.friends = newFriends;
return { currentUser };
});
}
sayHello =(msg)=>{
console.log(msg);
};
render(){
this.sayHello("From App Component");
return (

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!