astro/.changeset/twelve-lions-tie.md
Nate Moore d93f768c8c
Fix injection behavior for pages which contain no elements (#638)
* chore: add changeset

* fix(#605): inject HMR/styles even when page includes no elements

* chore: update test description
2021-07-09 09:46:19 -05:00

279 B

astro
patch

Add support for components defined in Frontmatter. Previously, the following code would throw an error. Now it is officially supported!

---
const { level = 1 } = Astro.props;
const Element = `h${level}`;
---

<Element>Hello world!</Element>