I receive the image´s error but I don´t understand why do I get it.Also attached the directory in the second image.
[![enter image description here][1]][1]import Link from 'next/link';
import { ProductModel } from '../models/product';import { CardProduct } from '../components/CardProduct';const List = () => { let list: ProductModel[] = [ //ProductModel[] esto significa que va a ser un array de ProductModel { id: 1, name: "shoes", price: 9999, }, ]; const [products, setProducts] = useState<ProductModel[]>(list); return (<div> Soy la página de Productos {products.map((element, index) => { return <CardProduct product={element}/>; })}<br/><Link href="/"><a>Ir a la home</a></Link></div> );}export default List;```[![enter image description here][2]][2] [1]: https://i.stack.imgur.com/knUzH.png [2]: https://i.stack.imgur.com/hKtQg.png