I'm trying to fetch API using this but it's not working.
async componentDidMount(){
const url = "https://jsonplaceholder.typicode.com/posts";
const response = await fetch(url);
const data = await response.json();
console.log(data);
}