# Example `@example/my-component` This is an example package, exported as `@example/my-component`. It consists of two Astro components, **Button** and **Heading**. ### Button The **Button** component generates a ` ``` ### Heading The **Heading** component generates an `` tag with a default **role** of **heading** and a **level** attribute that gets written to **aria-level**. ```astro --- import * as Component from '@example/my-component' --- Heading Subheading ``` ```html Plain Button Subheading ```