# HeadingGroup This groups headings together, much like the hgroup element in HTML. ```tsx import { render, HeadingGroup, Heading, } from '@shopify/ui-extensions-react/admin'; render('Playground', () => ); function App() { return ( <> Heading

Heading

Heading

); } ``` ```js import { extend, HeadingGroup, Heading, BlockStack, } from '@shopify/ui-extensions/admin'; extend('Playground', (root) => { const headingGroup = root.createComponent(BlockStack, undefined, [ root.createComponent(Heading, undefined, 'Heading

'), root.createComponent(HeadingGroup, undefined, [ root.createComponent(Heading, undefined, 'Heading

'), root.createComponent(HeadingGroup, undefined, [ root.createComponent(Heading, undefined, 'Heading

'), ]), ]), ]); root.appendChild(headingGroup); }); ```