Heading
Use this to display a title. It's similar to the h1-h6 tags in HTML
Anchor to headingpropsHeadingProps
- string
A unique identifier for the field.
- Anchor to sizesizeLevel
The visual level of the heading.
HeadingProps
- id
A unique identifier for the field.
string
- size
The visual level of the heading.
Level
export interface HeadingProps {
/** A unique identifier for the field. */
id?: string;
/** The visual level of the heading. */
size?: Level;
}
Level
1 | 2 | 3 | 4 | 5 | 6
Was this section helpful?
Simple Heading example
import {render, Heading} from '@shopify/ui-extensions-react/admin';
render('Playground', () => <App />);
function App() {
return <Heading>Store name</Heading>;
}
examples
Simple Heading example
React
import {render, Heading} from '@shopify/ui-extensions-react/admin'; render('Playground', () => <App />); function App() { return <Heading>Store name</Heading>; }
JS
import {extend, Heading} from '@shopify/ui-extensions/admin'; extend('Playground', (root) => { const heading = root.createComponent(Heading, undefined, 'Headings are cool'); root.appendChild(heading); });
Preview
