What component do you suggest?
HeadingLevel
What is the use case?
Larger apps and websites should have automatic heading levels to keep semantic page outlines.
What functions do you want from this component?
Wrap components and views with a HeadingLevel component to automatically define the levels of nested Heading components.
<template>
<HeadingLevel>
<Heading>This is a H2 element</Heading>
<HeadingLevel>
<Heading>This is a H3 element</Heading>
</HeadingLevel>
</HeadingLevel>
</template>
What component do you suggest?
HeadingLevel
What is the use case?
Larger apps and websites should have automatic heading levels to keep semantic page outlines.
What functions do you want from this component?
Wrap components and views with a
HeadingLevelcomponent to automatically define the levels of nestedHeadingcomponents.