import React from 'react'; import { useStore } from 'providers/Store'; import Collection from './Collection'; const Collections = () => { const [store, storeDispatch] = useStore(); const { collections } = store; return (
{collections && collections.length ? collections.map((c) => { return }) : null}
); }; export default Collections;