import clsx from 'clsx';
import { Store } from 'lib/aspire/types';
import { getCollections } from 'lib/shopify';
import { Suspense } from 'react';
import FilterList from './filter';
async function CollectionList({ store }: { store: Store }) {
const collections = await getCollections(store);
return ;
}
const skeleton = 'mb-3 h-4 w-5/6 animate-pulse rounded';
const activeAndTitles = 'bg-neutral-800 dark:bg-neutral-300';
const items = 'bg-neutral-400 dark:bg-neutral-700';
export default function Collections(store: Store) {
return (
}
>
);
}