import React, { useEffect, useState } from 'react'; import { useSelector } from 'react-redux'; import Collection from './Collection'; const Collections = ({searchText}) => { const collections = useSelector((state) => state.collections.collections); console.log(collections); return (