import { useQuery } from '@apollo/client' import { StoreConfigDocument } from '@graphcommerce/magento-store' import { SheetShellBase, SheetShellBaseProps } from '@graphcommerce/next-ui' import React from 'react' import Logo from './Logo' export type SheetShellProps = Omit function SheetShell(props: SheetShellProps) { const storeConfig = useQuery(StoreConfigDocument) const name = storeConfig.data?.storeConfig?.store_name ?? '' // size={`${responsiveVal(320, 800)}`} return } name={name} /> } export default SheetShell