Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

async await class component react

  async componentDidMount() {
    // when react first renders then it called componentDidMount()
    const response = await fetch('https://jsonplaceholder.typicode.com/users');
    const json = await response.json();
    console.log(json);
  }
 
PREVIOUS NEXT
Tagged: #async #await #class #component #react
ADD COMMENT
Topic
Name
1+5 =