import React from 'react';
import { Box, Page } from '@wix/design-system';
import { CollectionPageContentElement } from '../../components/CollectionPageContent';
import { useWixPatternsContainer } from '@wix/bex-core/react';
export function useCollectionPageContent(child: CollectionPageContentElement) {
const { isPanelLayout } = useWixPatternsContainer();
if (isPanelLayout) {
return (
);
}
return ;
}