How can I access the props from this taskList array?
I’m trying to access the props from this taskList array that I’m grabbing from firestore, The taskList is an array of objects so shouldn’t I just be able to access them with task.propName? function App() { const [taskList, setTaskList] = useState<Array<object>>() const taskCollectionRef = collection(db, "tasks") useEffect(() => { const getTaskList = async () =>… Read More How can I access the props from this taskList array?