Reactjs – Why I am getting this error: "Each child should have a unique key prop"
Getting this error "Each child should have a unique key prop" My code is as follows import React, { useState } from 'react' export default function Folder({ datas }) { const [toggleFolder, setToggleFolder] = useState(false); return ( <> <div onClick={()…