Javascript – TypeError: Cannot read properties of undefined (reading 'map') in react-js
import React, { useEffect, useState } from 'react'; import axios from "axios"; import './List.css'; import { toast } from "react-toastify"; const List = () => { const url = "http://localhost:4500"; const [list, setList] = useState([]); const fetchList = async ()…