React native – Type 'TaskListProps[]' is not assignable to type TaskListProps
I'm having issues dealing with types while coding a typescript app, I have the TaskListPorps as my interface export default interface TaskListProps { tasks: [ { list_id: string; title: string; description: string; status: string; deleted: boolean; deleted_at: string; created_at: string;…