Reactjs – Why am I getting undefined when fetching a list of posts?
I am trying to fetch a list of posts form jsonplaceholder with nextjs and axios. This is my ListOfPosts.jsx import Link from "next/link"; import axios from "axios"; export default function ListOfPosts({posts}) { return( <div> {posts.map(post => ( <div key={post.id}> <Link…