const [category, setCategory] = useState([[], [], []])
useEffect(() => {
fetch(`data/mainCategory.json `)
.then((res) => res.json())
.then(data => {
let copy = [...category]
copy[0] = data
setCategory(copy)
console.log(copy);
})
.catch(() => { console.log('error') });
}, []);