import Tag from 'components/tag'; import { Metaobject } from 'lib/shopify/types'; import { Suspense } from 'react'; import Tabs, { TabsPlaceholder } from './tabs'; const DynamicContent = async ({ content }: { content: Metaobject }) => { const sectionIds = content.sections ? JSON.parse(content.sections) : []; return (

{content.title}

}>
); }; export default DynamicContent;